diff options
author | ben@chromium.org <ben@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-01-18 04:52:03 +0000 |
---|---|---|
committer | ben@chromium.org <ben@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-01-18 04:52:03 +0000 |
commit | 872068906ee8a04b493d667ccfb37e3360fbf591 (patch) | |
tree | f8da7e179c7e490c4127d7c147b8010672f52597 /ash/wm/stacking_controller.cc | |
parent | 52fde7fe645c204496961faa555b730fc56783a2 (diff) | |
download | chromium_src-872068906ee8a04b493d667ccfb37e3360fbf591.zip chromium_src-872068906ee8a04b493d667ccfb37e3360fbf591.tar.gz chromium_src-872068906ee8a04b493d667ccfb37e3360fbf591.tar.bz2 |
Add a simple animation when showing/hiding windows.
http://crbug.com/110024
TEST=none
Review URL: http://codereview.chromium.org/9167032
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@118057 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'ash/wm/stacking_controller.cc')
-rw-r--r-- | ash/wm/stacking_controller.cc | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/ash/wm/stacking_controller.cc b/ash/wm/stacking_controller.cc index 08a990b..3516822 100644 --- a/ash/wm/stacking_controller.cc +++ b/ash/wm/stacking_controller.cc @@ -48,6 +48,11 @@ aura::Window* StackingController::GetDefaultParent(aura::Window* window) { switch (window->type()) { case aura::client::WINDOW_TYPE_NORMAL: case aura::client::WINDOW_TYPE_POPUP: + // TODO(beng): control windows with NULL parents should be parented to a + // unique, probably hidden, container. Adding here now for + // compatibility, since these windows were WINDOW_TYPE_POPUP + // until now. + case aura::client::WINDOW_TYPE_CONTROL: if (IsSystemModal(window)) return GetModalContainer(window); return always_on_top_controller_->GetContainer(window); |