diff options
author | oshima@chromium.org <oshima@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-11-17 06:10:50 +0000 |
---|---|---|
committer | oshima@chromium.org <oshima@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-11-17 06:10:50 +0000 |
commit | 935ed2e5ce4fed66dd7939c652e41d76b9235e4a (patch) | |
tree | 74f3957f4bf761f0b7c254e672fddf002ecaf5ce /ui | |
parent | 2c5146f5b9e78f29f6847da1d8d2338623fb959c (diff) | |
download | chromium_src-935ed2e5ce4fed66dd7939c652e41d76b9235e4a.zip chromium_src-935ed2e5ce4fed66dd7939c652e41d76b9235e4a.tar.gz chromium_src-935ed2e5ce4fed66dd7939c652e41d76b9235e4a.tar.bz2 |
Fix NWAura to use property to get restored bounds.
GetRestoredBounds should Return normal bounds if window is normal mode.
BUG=103490
TEST=none
Review URL: http://codereview.chromium.org/8468029
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@110452 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'ui')
-rw-r--r-- | ui/aura/window.h | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/ui/aura/window.h b/ui/aura/window.h index 59742bc..53f4dea 100644 --- a/ui/aura/window.h +++ b/ui/aura/window.h @@ -75,7 +75,6 @@ class AURA_EXPORT Window : public ui::LayerDelegate { WindowDelegate* delegate() { return delegate_; } const gfx::Rect& bounds() const; - const gfx::Rect& restore_bounds() const { return restore_bounds_; } Window* parent() { return parent_; } const Window* parent() const { return parent_; } @@ -303,9 +302,6 @@ class AURA_EXPORT Window : public ui::LayerDelegate { WindowDelegate* delegate_; - // The original bounds of a maximized/fullscreen window. - gfx::Rect restore_bounds_; - // The minimum size of the window a user can resize to. gfx::Size minimum_size_; |