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

Unified Diff: chrome/browser/browser_window_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/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

Powered by Google App Engine
This is Rietveld 408576698