OLD | NEW |
| (Empty) |
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 | |
3 // found in the LICENSE file. | |
4 | |
5 #ifndef CHROME_BROWSER_UI_ANDROID_WEBSITE_SETTINGS_POPUP_LEGACY_ANDROID_H_ | |
6 #define CHROME_BROWSER_UI_ANDROID_WEBSITE_SETTINGS_POPUP_LEGACY_ANDROID_H_ | |
7 | |
8 #include <jni.h> | |
9 | |
10 #include "base/android/scoped_java_ref.h" | |
11 #include "base/basictypes.h" | |
12 #include "base/memory/scoped_ptr.h" | |
13 #include "chrome/browser/ui/website_settings/website_settings_ui.h" | |
14 | |
15 namespace content { | |
16 class WebContents; | |
17 } | |
18 | |
19 // Android implementation of the website settings UI. | |
20 class WebsiteSettingsPopupLegacyAndroid : public WebsiteSettingsUI { | |
21 public: | |
22 WebsiteSettingsPopupLegacyAndroid(JNIEnv* env, | |
23 jobject java_website_settings, | |
24 content::WebContents* web_contents); | |
25 ~WebsiteSettingsPopupLegacyAndroid() override; | |
26 void Destroy(JNIEnv* env, jobject obj); | |
27 | |
28 // Revokes any current user exceptions for bypassing SSL error interstitials | |
29 // on this page. | |
30 void ResetCertDecisions(JNIEnv* env, jobject obj, jobject java_web_contents); | |
31 | |
32 // WebsiteSettingsUI implementations. | |
33 void SetCookieInfo(const CookieInfoList& cookie_info_list) override; | |
34 void SetPermissionInfo( | |
35 const PermissionInfoList& permission_info_list) override; | |
36 void SetIdentityInfo(const IdentityInfo& identity_info) override; | |
37 void SetFirstVisit(const base::string16& first_visit) override; | |
38 void SetSelectedTab(WebsiteSettingsUI::TabId tab_id) override; | |
39 | |
40 static bool RegisterWebsiteSettingsPopupLegacyAndroid(JNIEnv* env); | |
41 | |
42 private: | |
43 // The presenter that controlls the Website Settings UI. | |
44 scoped_ptr<WebsiteSettings> presenter_; | |
45 | |
46 // The java prompt implementation. | |
47 base::android::ScopedJavaGlobalRef<jobject> popup_jobject_; | |
48 | |
49 DISALLOW_COPY_AND_ASSIGN(WebsiteSettingsPopupLegacyAndroid); | |
50 }; | |
51 | |
52 #endif // CHROME_BROWSER_UI_ANDROID_WEBSITE_SETTINGS_POPUP_LEGACY_ANDROID_H_ | |
OLD | NEW |