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

Unified Diff: chrome/browser/cocoa/tab_contents_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_contents_controller.mm
===================================================================
--- chrome/browser/cocoa/tab_contents_controller.mm (revision 10014)
+++ chrome/browser/cocoa/tab_contents_controller.mm (working copy)
@@ -202,6 +202,28 @@
[starButton_ setImage:[NSImage imageNamed:starImageName]];
}
+// 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 localGrowBox = NSMakeRect(0, 0, 0, 0);
+ NSView* contentView = contents_->GetNativeView();
+ if (contentView) {
+ localGrowBox = windowGrowBox;
+ // The scrollbar assumes that the resizer goes all the way down to the
+ // bottom corner, so we ignore any y offset to the rect itself and use the
+ // entire bottom corner.
+ localGrowBox.origin.y = 0;
+ // Convert to view coordinates from window coordinates.
+ localGrowBox = [contentView convertRect:localGrowBox fromView:nil];
+ // Flip the rect in view coordinates
+ localGrowBox.origin.y =
+ [contentView frame].size.height - localGrowBox.origin.y -
+ localGrowBox.size.height;
+ }
+ return localGrowBox;
+}
+
@end
//--------------------------------------------------------------------------

Powered by Google App Engine
This is Rietveld 408576698