| Index: chrome/browser/ui/cocoa/page_info_bubble_controller.h
|
| ===================================================================
|
| --- chrome/browser/ui/cocoa/page_info_bubble_controller.h (revision 142088)
|
| +++ chrome/browser/ui/cocoa/page_info_bubble_controller.h (working copy)
|
| @@ -13,6 +13,7 @@
|
|
|
| namespace content {
|
| class PageNavigator;
|
| +class WebContents;
|
| }
|
|
|
| // This NSWindowController subclass manages the InfoBubbleWindow and view that
|
| @@ -28,6 +29,9 @@
|
| // The certificate ID for the page, 0 if the page is not over HTTPS.
|
| int certID_;
|
|
|
| + // The WebContents that created the bubble.
|
| + content::WebContents* webContents_;
|
| +
|
| // Used for loading pages.
|
| content::PageNavigator* navigator_;
|
| }
|
| @@ -41,6 +45,7 @@
|
| - (id)initWithPageInfoModel:(PageInfoModel*)model
|
| modelObserver:(PageInfoModelObserver*)bridge
|
| parentWindow:(NSWindow*)parentWindow
|
| + webContents:(content::WebContents*)webContents
|
| navigator:(content::PageNavigator*)navigator;
|
|
|
|
|
|
|