OLD | NEW |
1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2013 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_UI_ANDROID_WEBSITE_SETTINGS_POPUP_ANDROID_H_ | 5 #ifndef CHROME_BROWSER_UI_ANDROID_WEBSITE_SETTINGS_POPUP_ANDROID_H_ |
6 #define CHROME_BROWSER_UI_ANDROID_WEBSITE_SETTINGS_POPUP_ANDROID_H_ | 6 #define CHROME_BROWSER_UI_ANDROID_WEBSITE_SETTINGS_POPUP_ANDROID_H_ |
7 | 7 |
8 #include <jni.h> | 8 #include <jni.h> |
9 | 9 |
10 #include "base/android/scoped_java_ref.h" | 10 #include "base/android/scoped_java_ref.h" |
(...skipping 17 matching lines...) Expand all Loading... |
28 }; | 28 }; |
29 | 29 |
30 // Android implementation of the website settings UI. | 30 // Android implementation of the website settings UI. |
31 class WebsiteSettingsPopupAndroid : public WebsiteSettingsUI { | 31 class WebsiteSettingsPopupAndroid : public WebsiteSettingsUI { |
32 public: | 32 public: |
33 WebsiteSettingsPopupAndroid(JNIEnv* env, | 33 WebsiteSettingsPopupAndroid(JNIEnv* env, |
34 jobject java_website_settings, | 34 jobject java_website_settings, |
35 content::WebContents* web_contents); | 35 content::WebContents* web_contents); |
36 virtual ~WebsiteSettingsPopupAndroid(); | 36 virtual ~WebsiteSettingsPopupAndroid(); |
37 void Destroy(JNIEnv* env, jobject obj); | 37 void Destroy(JNIEnv* env, jobject obj); |
| 38 void OnPermissionSettingChanged(JNIEnv* env, |
| 39 jobject obj, |
| 40 jint type, |
| 41 jint setting); |
38 | 42 |
39 // WebsiteSettingsUI implementations. | 43 // WebsiteSettingsUI implementations. |
40 virtual void SetCookieInfo(const CookieInfoList& cookie_info_list) override; | 44 virtual void SetCookieInfo(const CookieInfoList& cookie_info_list) override; |
41 virtual void SetPermissionInfo( | 45 virtual void SetPermissionInfo( |
42 const PermissionInfoList& permission_info_list) override; | 46 const PermissionInfoList& permission_info_list) override; |
43 virtual void SetIdentityInfo(const IdentityInfo& identity_info) override; | 47 virtual void SetIdentityInfo(const IdentityInfo& identity_info) override; |
44 virtual void SetFirstVisit(const base::string16& first_visit) override; | 48 virtual void SetFirstVisit(const base::string16& first_visit) override; |
45 virtual void SetSelectedTab(WebsiteSettingsUI::TabId tab_id) override; | 49 virtual void SetSelectedTab(WebsiteSettingsUI::TabId tab_id) override; |
46 | 50 |
47 static bool RegisterWebsiteSettingsPopupAndroid(JNIEnv* env); | 51 static bool RegisterWebsiteSettingsPopupAndroid(JNIEnv* env); |
48 | 52 |
49 private: | 53 private: |
50 // The presenter that controlls the Website Settings UI. | 54 // The presenter that controlls the Website Settings UI. |
51 scoped_ptr<WebsiteSettings> presenter_; | 55 scoped_ptr<WebsiteSettings> presenter_; |
52 | 56 |
53 // The java prompt implementation. | 57 // The java prompt implementation. |
54 base::android::ScopedJavaGlobalRef<jobject> popup_jobject_; | 58 base::android::ScopedJavaGlobalRef<jobject> popup_jobject_; |
55 | 59 |
56 GURL url_; | 60 GURL url_; |
57 | 61 |
58 DISALLOW_COPY_AND_ASSIGN(WebsiteSettingsPopupAndroid); | 62 DISALLOW_COPY_AND_ASSIGN(WebsiteSettingsPopupAndroid); |
59 }; | 63 }; |
60 | 64 |
61 #endif // CHROME_BROWSER_UI_ANDROID_WEBSITE_SETTINGS_POPUP_ANDROID_H_ | 65 #endif // CHROME_BROWSER_UI_ANDROID_WEBSITE_SETTINGS_POPUP_ANDROID_H_ |
OLD | NEW |