Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(313)

Side by Side Diff: chrome/browser/ui/android/website_settings_popup_android.h

Issue 473643002: Add button to page info to revoke user certificate decisions. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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"
11 #include "base/basictypes.h" 11 #include "base/basictypes.h"
12 #include "base/memory/scoped_ptr.h" 12 #include "base/memory/scoped_ptr.h"
13 #include "chrome/browser/ui/website_settings/website_settings_ui.h" 13 #include "chrome/browser/ui/website_settings/website_settings_ui.h"
14 14
15 namespace content { 15 namespace content {
16 class WebContents; 16 class WebContents;
17 } 17 }
18 18
19 // Android implementation of the website settings UI. 19 // Android implementation of the website settings UI.
20 class WebsiteSettingsPopupAndroid : public WebsiteSettingsUI { 20 class WebsiteSettingsPopupAndroid : public WebsiteSettingsUI {
21 public: 21 public:
22 WebsiteSettingsPopupAndroid(JNIEnv* env, 22 WebsiteSettingsPopupAndroid(JNIEnv* env,
23 jobject java_website_settings, 23 jobject java_website_settings,
24 content::WebContents* web_contents); 24 content::WebContents* web_contents);
25 virtual ~WebsiteSettingsPopupAndroid(); 25 virtual ~WebsiteSettingsPopupAndroid();
26 void Destroy(JNIEnv* env, jobject obj); 26 void Destroy(JNIEnv* env, jobject obj);
27 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
28 // WebsiteSettingsUI implementations. 32 // WebsiteSettingsUI implementations.
29 virtual void SetCookieInfo(const CookieInfoList& cookie_info_list) OVERRIDE; 33 virtual void SetCookieInfo(const CookieInfoList& cookie_info_list) OVERRIDE;
30 virtual void SetPermissionInfo( 34 virtual void SetPermissionInfo(
31 const PermissionInfoList& permission_info_list) OVERRIDE; 35 const PermissionInfoList& permission_info_list) OVERRIDE;
32 virtual void SetIdentityInfo(const IdentityInfo& identity_info) OVERRIDE; 36 virtual void SetIdentityInfo(const IdentityInfo& identity_info) OVERRIDE;
33 virtual void SetFirstVisit(const base::string16& first_visit) OVERRIDE; 37 virtual void SetFirstVisit(const base::string16& first_visit) OVERRIDE;
34 virtual void SetSelectedTab(WebsiteSettingsUI::TabId tab_id) OVERRIDE; 38 virtual void SetSelectedTab(WebsiteSettingsUI::TabId tab_id) OVERRIDE;
35 39
36 static bool RegisterWebsiteSettingsPopupAndroid(JNIEnv* env); 40 static bool RegisterWebsiteSettingsPopupAndroid(JNIEnv* env);
37 41
38 private: 42 private:
39 // The presenter that controlls the Website Settings UI. 43 // The presenter that controlls the Website Settings UI.
40 scoped_ptr<WebsiteSettings> presenter_; 44 scoped_ptr<WebsiteSettings> presenter_;
41 45
42 // The java prompt implementation. 46 // The java prompt implementation.
43 base::android::ScopedJavaGlobalRef<jobject> popup_jobject_; 47 base::android::ScopedJavaGlobalRef<jobject> popup_jobject_;
44 48
45 DISALLOW_COPY_AND_ASSIGN(WebsiteSettingsPopupAndroid); 49 DISALLOW_COPY_AND_ASSIGN(WebsiteSettingsPopupAndroid);
46 }; 50 };
47 51
48 #endif // CHROME_BROWSER_UI_ANDROID_WEBSITE_SETTINGS_POPUP_ANDROID_H_ 52 #endif // CHROME_BROWSER_UI_ANDROID_WEBSITE_SETTINGS_POPUP_ANDROID_H_
OLDNEW
« no previous file with comments | « chrome/browser/ssl/chrome_ssl_host_state_delegate_test.cc ('k') | chrome/browser/ui/android/website_settings_popup_android.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698