Index: chrome/browser/browser_window_controller.mm |
=================================================================== |
--- chrome/browser/browser_window_controller.mm (revision 10014) |
+++ chrome/browser/browser_window_controller.mm (working copy) |
@@ -145,4 +145,12 @@ |
[tabStripController_ setStarredState:isStarred]; |
} |
+// Return the rect, in WebKit coordinates (flipped), of the window's grow box |
+// in the coordinate system of the content area of the currently selected tab. |
+// |windowGrowBox| needs to be in the window's coordinate system. |
+- (NSRect)selectedTabGrowBoxFromWindowGrowBox:(NSRect)windowGrowBox { |
+ return [tabStripController_ |
+ selectedTabGrowBoxFromWindowGrowBox:windowGrowBox]; |
+} |
+ |
@end |