| 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_;
|
|
|