Chromium Code Reviews| 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 e354afe73d7c5d56011dd426fe0fa6c51f9a4913..94dbb7039f6ad774d205b76282596f9e57088b78 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 |
| @@ -13,6 +13,7 @@ |
| #include "components/security_state/security_state_model.h" |
| #include "content/public/browser/web_contents_observer.h" |
| +class Profile; |
| class WebsiteSettingsUIBridge; |
| namespace content { |
| @@ -32,6 +33,8 @@ class X509Certificate; |
| @private |
| content::WebContents* webContents_; |
| + Profile* profile_; |
| + |
|
groby-ooo-7-16
2016/10/10 05:50:07
nit: kill the blank lines
raymes
2016/10/10 06:02:17
Done.
|
| base::scoped_nsobject<NSView> contentView_; |
| // The main content view for the Permissions tab. |
| @@ -103,6 +106,7 @@ class X509Certificate; |
| - (id)initWithParentWindow:(NSWindow*)parentWindow |
| websiteSettingsUIBridge:(WebsiteSettingsUIBridge*)bridge |
| webContents:(content::WebContents*)webContents |
| + forProfile:(Profile*)profile |
|
groby-ooo-7-16
2016/10/10 05:50:07
nit: forProfile
raymes
2016/10/10 06:02:17
Done.
|
| url:(const GURL&)url |
| isDevToolsDisabled:(BOOL)isDevToolsDisabled; |