diff options
Diffstat (limited to 'chrome/browser/cocoa/tab_contents_controller.h')
-rw-r--r-- | chrome/browser/cocoa/tab_contents_controller.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/chrome/browser/cocoa/tab_contents_controller.h b/chrome/browser/cocoa/tab_contents_controller.h index 20d9a38..9f2eddd 100644 --- a/chrome/browser/cocoa/tab_contents_controller.h +++ b/chrome/browser/cocoa/tab_contents_controller.h @@ -8,6 +8,7 @@ #include <Cocoa/Cocoa.h> class CommandUpdater; +@class GrowBoxView; class LocationBar; class TabContents; class TabContentsCommandObserver; @@ -36,6 +37,7 @@ class TabStripModel; IBOutlet NSButton* starButton_; IBOutlet NSTextField* locationBar_; IBOutlet NSBox* contentsBox_; + IBOutlet GrowBoxView* growBox_; } // Create the contents of a tab represented by |contents| and loaded from the @@ -70,8 +72,7 @@ class TabStripModel; // Return the rect, in WebKit coordinates (flipped), of the window's grow box // in the coordinate system of the content area of this tab. -// |windowGrowBox| needs to be in the window's coordinate system. -- (NSRect)growBoxFromWindowGrowBox:(NSRect)windowGrowBox; +- (NSRect)growBoxRect; @end |