Rename GetIconID to GetIconId
[chromium-blink-merge.git] / chrome / browser / android / fullscreen / fullscreen_infobar_delegate.h
blob893e7f43b28326ae8049a3d2e776e05e03f3331a
1 // Copyright 2015 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #ifndef CHROME_BROWSER_ANDROID_FULLSCREEN_FULLSCREEN_INFOBAR_DELEGATE_H_
6 #define CHROME_BROWSER_ANDROID_FULLSCREEN_FULLSCREEN_INFOBAR_DELEGATE_H_
8 #include <string>
10 #include "base/android/jni_android.h"
11 #include "base/android/scoped_java_ref.h"
12 #include "components/infobars/core/confirm_infobar_delegate.h"
13 #include "url/gurl.h"
15 class InfoBarService;
17 // Native part of FullscreenInfoBarDelegate.java. This class is responsible
18 // for adding and removing the fullscreen infobar.
19 class FullscreenInfoBarDelegate : public ConfirmInfoBarDelegate {
20 public:
21 static bool RegisterFullscreenInfoBarDelegate(JNIEnv* env);
23 FullscreenInfoBarDelegate(JNIEnv* env, jobject obj, GURL origin);
24 ~FullscreenInfoBarDelegate() override;
26 // Called to close the infobar.
27 void CloseFullscreenInfoBar(JNIEnv* env, jobject obj);
29 // ConfirmInfoBarDelegate:
30 int GetIconId() const override;
31 base::string16 GetMessageText() const override;
32 base::string16 GetButtonLabel(InfoBarButton button) const override;
33 bool Accept() override;
34 bool Cancel() override;
36 private:
37 base::android::ScopedJavaGlobalRef<jobject> j_delegate_;
38 GURL origin_;
40 DISALLOW_COPY_AND_ASSIGN(FullscreenInfoBarDelegate);
43 #endif // CHROME_BROWSER_ANDROID_FULLSCREEN_FULLSCREEN_INFOBAR_DELEGATE_H_