diff options
author | ben@chromium.org <ben@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2008-11-14 22:40:34 +0000 |
---|---|---|
committer | ben@chromium.org <ben@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2008-11-14 22:40:34 +0000 |
commit | 5a068bd029b1d28374f0cf26cbb74bc1ef33bd0c (patch) | |
tree | 4ac3c9fae806384f0c5c1b8cc4bfd1efae7aa50a /chrome/views/window.h | |
parent | d66cdc5623b9e6815c1048c02b6ca99664ec1bf7 (diff) | |
download | chromium_src-5a068bd029b1d28374f0cf26cbb74bc1ef33bd0c.zip chromium_src-5a068bd029b1d28374f0cf26cbb74bc1ef33bd0c.tar.gz chromium_src-5a068bd029b1d28374f0cf26cbb74bc1ef33bd0c.tar.bz2 |
Fix broken size restoration for bookmark manager. Initializing a rect incorrectly, and clobbering the maximized state during initial sizing.
http://crbug.com/4437
Review URL: http://codereview.chromium.org/10758
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@5512 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/views/window.h')
-rw-r--r-- | chrome/views/window.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/chrome/views/window.h b/chrome/views/window.h index ad8f020..9758f9f 100644 --- a/chrome/views/window.h +++ b/chrome/views/window.h @@ -249,6 +249,10 @@ class Window : public ContainerWin { // or not it actually is. bool disable_inactive_rendering_; + // The saved maximized state for this window. See note in SetInitialBounds + // that explains why we save this. + bool saved_maximized_state_; + DISALLOW_EVIL_CONSTRUCTORS(Window); }; |