| Index: chrome/browser/ui/cocoa/tab_contents/tab_contents_controller.h
|
| diff --git a/chrome/browser/ui/cocoa/tab_contents/tab_contents_controller.h b/chrome/browser/ui/cocoa/tab_contents/tab_contents_controller.h
|
| index ad0e0de4a1d3829b938c0ac2b3a92cb643cc90f1..d729f79bc3a849c21a8e8cf8a26aee23bb6f5a63 100644
|
| --- a/chrome/browser/ui/cocoa/tab_contents/tab_contents_controller.h
|
| +++ b/chrome/browser/ui/cocoa/tab_contents/tab_contents_controller.h
|
| @@ -41,6 +41,9 @@ class WebContents;
|
| // view as a subview instead of the normal WebContentsView render view.
|
| // Note: This will be false in the case of non-Flash fullscreen.
|
| BOOL isEmbeddingFullscreenWidget_;
|
| +
|
| + // Set to true if the window is a popup.
|
| + BOOL isPopup_;
|
| }
|
| @property(readonly, nonatomic) content::WebContents* webContents;
|
|
|
| @@ -52,7 +55,7 @@ class WebContents;
|
| @property(assign, nonatomic) BOOL blockFullscreenResize;
|
|
|
| // Create the contents of a tab represented by |contents|.
|
| -- (id)initWithContents:(content::WebContents*)contents;
|
| +- (id)initWithContents:(content::WebContents*)contents isPopup:(BOOL)popup;
|
|
|
| // Call when the container view owned by TabContentsController is about to be
|
| // resized and inserted into the view hierarchy, so as to not trigger
|
|
|