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_controller.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_controller.mm')
-rw-r--r-- | chrome/browser/cocoa/browser_window_controller.mm | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/chrome/browser/cocoa/browser_window_controller.mm b/chrome/browser/cocoa/browser_window_controller.mm index 6986885..2be2960 100644 --- a/chrome/browser/cocoa/browser_window_controller.mm +++ b/chrome/browser/cocoa/browser_window_controller.mm @@ -220,7 +220,7 @@ windowRect.set_origin(WindowSizer::GetDefaultPopupOrigin(size)); } - windowShim_->SetBounds(windowRect, BrowserWindow::WINDOW_BOUNDS); + windowShim_->SetBounds(windowRect); // Puts the incognito badge on the window frame, if necessary. [self installIncognitoBadge]; @@ -987,10 +987,6 @@ [toolbarController_ setStarredState:isStarred]; } -- (NSRect)tabContentsFrame { - return [[self tabContentArea] frame]; -} - // 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. |