Chromium Code Reviews

Unified Diff: chrome/browser/browser_window_cocoa.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.
Jump to:
View side-by-side diff with in-line comments
« no previous file with comments | « no previous file | chrome/browser/browser_window_controller.h » ('j') | chrome/renderer/render_widget.cc » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/browser_window_cocoa.mm
===================================================================
--- chrome/browser/browser_window_cocoa.mm (revision 10014)
+++ chrome/browser/browser_window_cocoa.mm (working copy)
@@ -99,10 +99,16 @@
return false;
}
+@interface NSWindow(OSInternals)
+- (NSRect)_growBoxRect;
+@end
+
gfx::Rect BrowserWindowCocoa::GetRootWindowResizerRect() const {
- // TODO(pinkerton): fill this in so scrollbars go in the correct places
- NOTIMPLEMENTED();
- return gfx::Rect();
+ NSRect windowRect = [window_ _growBoxRect];
+ // convert from window coordinates to the coordinates of the currently
+ // selected tab. |tabRect| will already be flipped into WebKit coordinates.
+ NSRect tabRect = [controller_ selectedTabGrowBoxFromWindowGrowBox:windowRect];
+ return gfx::Rect(NSRectToCGRect(tabRect));
}
LocationBar* BrowserWindowCocoa::GetLocationBar() const {
« no previous file with comments | « no previous file | chrome/browser/browser_window_controller.h » ('j') | chrome/renderer/render_widget.cc » ('J')

Powered by Google App Engine