OLD | NEW |
1 // Copyright 2015 The Chromium Authors. All rights reserved. | 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 | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #ifndef CHROME_BROWSER_ANDROID_FULLSCREEN_FULLSCREEN_INFOBAR_DELEGATE_H_ | 5 #ifndef CHROME_BROWSER_UI_ANDROID_INFOBARS_DOCUMENT_MODE_OPT_OUT_INFOBAR_DELEGAT
E_H_ |
6 #define CHROME_BROWSER_ANDROID_FULLSCREEN_FULLSCREEN_INFOBAR_DELEGATE_H_ | 6 #define CHROME_BROWSER_UI_ANDROID_INFOBARS_DOCUMENT_MODE_OPT_OUT_INFOBAR_DELEGAT
E_H_ |
7 | 7 |
8 #include <string> | 8 #include <jni.h> |
9 | 9 |
10 #include "base/android/jni_android.h" | |
11 #include "base/android/scoped_java_ref.h" | 10 #include "base/android/scoped_java_ref.h" |
| 11 #include "base/macros.h" |
12 #include "components/infobars/core/confirm_infobar_delegate.h" | 12 #include "components/infobars/core/confirm_infobar_delegate.h" |
13 #include "url/gurl.h" | |
14 | 13 |
15 class InfoBarService; | 14 namespace content { |
| 15 class WebContents; |
| 16 } |
16 | 17 |
17 // Native part of FullscreenInfoBarDelegate.java. This class is responsible | 18 // An InfoBarDelegate that asks to opt-out document mode for the devices that |
18 // for adding and removing the fullscreen infobar. | 19 // document mode is inconvenient. |
19 class FullscreenInfoBarDelegate : public ConfirmInfoBarDelegate { | 20 class DocumentModeOptOutInfoBarDelegate : public ConfirmInfoBarDelegate { |
20 public: | 21 public: |
21 static bool RegisterFullscreenInfoBarDelegate(JNIEnv* env); | 22 static bool RegisterDocumentModeOptOutInfoBarDelegate(JNIEnv* env); |
22 | 23 |
23 FullscreenInfoBarDelegate(JNIEnv* env, jobject obj, GURL origin); | 24 DocumentModeOptOutInfoBarDelegate(JNIEnv* env, jobject obj); |
24 ~FullscreenInfoBarDelegate() override; | 25 ~DocumentModeOptOutInfoBarDelegate() override; |
25 | 26 |
26 // Called to close the infobar. | 27 private: |
27 void CloseFullscreenInfoBar(JNIEnv* env, jobject obj); | 28 // InfoBarDelegate: |
| 29 int GetIconId() const override; |
| 30 bool ShouldExpire(const NavigationDetails& details) const override; |
| 31 void InfoBarDismissed() override; |
28 | 32 |
29 // ConfirmInfoBarDelegate: | 33 // ConfirmInfoBarDelegate: |
30 int GetIconId() const override; | |
31 base::string16 GetMessageText() const override; | 34 base::string16 GetMessageText() const override; |
| 35 int GetButtons() const override; |
32 base::string16 GetButtonLabel(InfoBarButton button) const override; | 36 base::string16 GetButtonLabel(InfoBarButton button) const override; |
33 bool Accept() override; | 37 bool Accept() override; |
34 bool Cancel() override; | 38 bool Cancel() override; |
35 | 39 |
36 private: | |
37 base::android::ScopedJavaGlobalRef<jobject> j_delegate_; | 40 base::android::ScopedJavaGlobalRef<jobject> j_delegate_; |
38 GURL origin_; | |
39 | 41 |
40 DISALLOW_COPY_AND_ASSIGN(FullscreenInfoBarDelegate); | 42 DISALLOW_COPY_AND_ASSIGN(DocumentModeOptOutInfoBarDelegate); |
41 }; | 43 }; |
42 | 44 |
43 #endif // CHROME_BROWSER_ANDROID_FULLSCREEN_FULLSCREEN_INFOBAR_DELEGATE_H_ | 45 #endif // CHROME_BROWSER_UI_ANDROID_INFOBARS_DOCUMENT_MODE_OPT_OUT_INFOBAR_DELE
GATE_H_ |
OLD | NEW |