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

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

Issue 1100283002: Add connection info popup within Page Info on Android. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Review comments Created 5 years, 7 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
OLDNEW
(Empty)
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.
4
5 #ifndef CHROME_BROWSER_UI_ANDROID_CONNECTION_INFO_POPUP_ANDROID_H_
6 #define CHROME_BROWSER_UI_ANDROID_CONNECTION_INFO_POPUP_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 which displays detailed
20 // connection and certificate information for the website.
21 class ConnectionInfoPopupAndroid : public WebsiteSettingsUI {
22 public:
23 ConnectionInfoPopupAndroid(JNIEnv* env,
24 jobject java_website_settings,
25 content::WebContents* web_contents);
26 ~ConnectionInfoPopupAndroid() override;
27 void Destroy(JNIEnv* env, jobject obj);
28
29 // Revokes any current user exceptions for bypassing SSL error interstitials
30 // on this page.
31 void ResetCertDecisions(JNIEnv* env, jobject obj, jobject java_web_contents);
32
33 // WebsiteSettingsUI implementations.
34 void SetCookieInfo(const CookieInfoList& cookie_info_list) override;
35 void SetPermissionInfo(
36 const PermissionInfoList& permission_info_list) override;
37 void SetIdentityInfo(const IdentityInfo& identity_info) override;
38 void SetFirstVisit(const base::string16& first_visit) override;
39 void SetSelectedTab(WebsiteSettingsUI::TabId tab_id) override;
40
41 static bool RegisterConnectionInfoPopupAndroid(JNIEnv* env);
42
43 private:
44 // The presenter that controlls the Website Settings UI.
45 scoped_ptr<WebsiteSettings> presenter_;
46
47 // The java prompt implementation.
48 base::android::ScopedJavaGlobalRef<jobject> popup_jobject_;
49
50 DISALLOW_COPY_AND_ASSIGN(ConnectionInfoPopupAndroid);
51 };
52
53 #endif // CHROME_BROWSER_UI_ANDROID_CONNECTION_INFO_POPUP_ANDROID_H_
OLDNEW
« no previous file with comments | « chrome/browser/ui/android/certificate_viewer_android.cc ('k') | chrome/browser/ui/android/connection_info_popup_android.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698