Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(2438)

Unified Diff: chrome/browser/cocoa/tab_strip_controller.mm

Issue 21512: Hook up the resize rect for Mac and enable its use in the renderer (mac-only)... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 11 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: chrome/browser/cocoa/tab_strip_controller.mm
===================================================================
--- chrome/browser/cocoa/tab_strip_controller.mm (revision 10014)
+++ chrome/browser/cocoa/tab_strip_controller.mm (working copy)
@@ -334,6 +334,24 @@
[selectedController 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 {
+ TabContents* selectedContents = model_->GetSelectedTabContents();
+ if (!selectedContents) {
+ // When the window is initially being constructed, there may be no currently
+ // selected tab, so pick the first one. If there aren't any, just bail with
+ // an empty rect.
+ selectedContents = model_->GetTabContentsAt(0);
+ if (!selectedContents)
+ return NSMakeRect(0, 0, 0, 0);
+ }
+ TabContentsController* selectedController =
+ [self controllerWithContents:selectedContents];
+ return [selectedController growBoxFromWindowGrowBox:windowGrowBox];
+}
+
@end
//--------------------------------------------------------------------------

Powered by Google App Engine
This is Rietveld 408576698