diff options
author | erg@chromium.org <erg@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-03-24 17:57:12 +0000 |
---|---|---|
committer | erg@chromium.org <erg@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-03-24 17:57:12 +0000 |
commit | e561e20e4220751a8eb243ea5da7eb154180c6da (patch) | |
tree | 21cb95f4ed21f8f753b3768af2920b1f96b01418 /chrome/browser/cocoa/browser_window_cocoa.mm | |
parent | 4def84918982a6c01649b5e4eadfac4904c1c847 (diff) | |
download | chromium_src-e561e20e4220751a8eb243ea5da7eb154180c6da.zip chromium_src-e561e20e4220751a8eb243ea5da7eb154180c6da.tar.gz chromium_src-e561e20e4220751a8eb243ea5da7eb154180c6da.tar.bz2 |
Revert "Fix browser side handling of moveTo by resizing the content area; not the window."
This reverts commit 2ce3ea80b627f58acb97802b0cc182b3a2bdf809 (r40386).
This seems to tickle some weird race condition where the renderer and the
browser process disagree about the size of the window. I'm reverting this
change as 38685 is scarier then 27365.
TEST=none
BUG=38785,27365
Review URL: http://codereview.chromium.org/1259004
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@42494 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/cocoa/browser_window_cocoa.mm')
-rw-r--r-- | chrome/browser/cocoa/browser_window_cocoa.mm | 22 |
1 files changed, 4 insertions, 18 deletions
diff --git a/chrome/browser/cocoa/browser_window_cocoa.mm b/chrome/browser/cocoa/browser_window_cocoa.mm index 01d592e..4972eae 100644 --- a/chrome/browser/cocoa/browser_window_cocoa.mm +++ b/chrome/browser/cocoa/browser_window_cocoa.mm @@ -64,27 +64,13 @@ void BrowserWindowCocoa::Show() { [window() makeKeyAndOrderFront:controller_]; } -void BrowserWindowCocoa::SetBounds(const gfx::Rect& bounds, - BoundsType bounds_type) { - gfx::Rect win_bounds = bounds; - if (bounds_type == BrowserWindow::CONTENT_BOUNDS) { - // Fetch the size of the content area in the NSWindow. - NSSize content_area_size = [controller_ tabContentsFrame].size; - int width_offset = bounds.width() - content_area_size.width; - int height_offset = bounds.height() - content_area_size.height; - - // Adjust the size relative to the current frame size. - NSSize current_frame = [window() frame].size; - win_bounds.set_width(current_frame.width + width_offset); - win_bounds.set_height(current_frame.height + height_offset); - } - - NSRect cocoa_bounds = NSMakeRect(win_bounds.x(), 0, win_bounds.width(), - win_bounds.height()); +void BrowserWindowCocoa::SetBounds(const gfx::Rect& bounds) { + NSRect cocoa_bounds = NSMakeRect(bounds.x(), 0, bounds.width(), + bounds.height()); // Flip coordinates based on the primary screen. NSScreen* screen = [[NSScreen screens] objectAtIndex:0]; cocoa_bounds.origin.y = - [screen frame].size.height - win_bounds.height() - win_bounds.y(); + [screen frame].size.height - bounds.height() - bounds.y(); [window() setFrame:cocoa_bounds display:YES]; } |