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

Unified Diff: chrome/browser/ui/cocoa/website_settings/website_settings_bubble_controller.h

Issue 2327433002: Stop using CertStore which is not compatible with PlzNavigate. (Closed)
Patch Set: remove cert_store on ios Created 4 years, 3 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 side-by-side diff with in-line comments
Download patch
Index: chrome/browser/ui/cocoa/website_settings/website_settings_bubble_controller.h
diff --git a/chrome/browser/ui/cocoa/website_settings/website_settings_bubble_controller.h b/chrome/browser/ui/cocoa/website_settings/website_settings_bubble_controller.h
index 544e260573378a01dfa3cc0c34dd5b8148fc9ecb..2ba7252f2f3318bb0cb11d3001f1186629d36b35 100644
--- a/chrome/browser/ui/cocoa/website_settings/website_settings_bubble_controller.h
+++ b/chrome/browser/ui/cocoa/website_settings/website_settings_bubble_controller.h
@@ -17,6 +17,10 @@ class WebsiteSettingsUIBridge;
namespace content {
class WebContents;
+}
+
+namespace net {
+class X509Certificate;
}
// This NSWindowController subclass manages the InfoBubbleWindow and view that
@@ -50,9 +54,9 @@ class WebContents;
// Whether DevTools is disabled for the relevant profile.
BOOL isDevToolsDisabled_;
- // The ID of the server certificate from the identity info. This should
- // always be non-zero on a cryptographic connection, and 0 otherwise.
- int certificateId_;
+ // The server certificate from the identity info. This should always be
+ // non-null on a cryptographic connection, and null otherwise.
+ scoped_refptr<net::X509Certificate> certificate_;
// The link button for revoking certificate decisions.
NSButton* resetDecisionsButton_;
« no previous file with comments | « chrome/browser/ui/browser.cc ('k') | chrome/browser/ui/cocoa/website_settings/website_settings_bubble_controller.mm » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698