diff options
author | scottmg@chromium.org <scottmg@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-11-13 18:39:46 +0000 |
---|---|---|
committer | scottmg@chromium.org <scottmg@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-11-13 18:39:46 +0000 |
commit | 42286187ce93cbbf7b291d4719bc7d2fd27fc583 (patch) | |
tree | be23602963a9ea1e1b9e3ef35c33f18f9ebe1495 /ash/shell.h | |
parent | 76297d2792b44dc5e0b2f5fad488acf815f7813f (diff) | |
download | chromium_src-42286187ce93cbbf7b291d4719bc7d2fd27fc583.zip chromium_src-42286187ce93cbbf7b291d4719bc7d2fd27fc583.tar.gz chromium_src-42286187ce93cbbf7b291d4719bc7d2fd27fc583.tar.bz2 |
reland of https://codereview.chromium.org/11364053/
Two changes from that CL:
- Don't remove per-RootWindow StackingClient (erg thought he probably needed it; if not I can remove it later in a separate CL)
- Fix initialization in Shell::PlatformInitialize (wasn't initializing correctly in the CrOS case), diff between ps1 and ps2 in content/shell/shell_aura.cc
TBR=ben@chromium.org
BUG=128578
Review URL: https://codereview.chromium.org/11362216
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@167431 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'ash/shell.h')
-rw-r--r-- | ash/shell.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/ash/shell.h b/ash/shell.h index 6ceb339..8e27380 100644 --- a/ash/shell.h +++ b/ash/shell.h @@ -31,6 +31,7 @@ class FocusManager; class RootWindow; class Window; namespace client { +class StackingClient; class UserActionClient; } } @@ -99,7 +100,6 @@ class RootWindowLayoutManager; class ScreenPositionController; class ShadowController; class SlowAnimationEventFilter; -class StackingController; class StatusAreaWidget; class SystemGestureEventFilter; class SystemModalContainerEventFilter; @@ -405,6 +405,8 @@ class ASH_EXPORT Shell : internal::SystemModalContainerEventFilterDelegate, } #endif // defined(OS_CHROMEOS) + aura::client::StackingClient* stacking_client(); + private: FRIEND_TEST_ALL_PREFIXES(ExtendedDesktopTest, TestCursor); FRIEND_TEST_ALL_PREFIXES(WindowManagerTest, MouseEventCursors); @@ -463,7 +465,7 @@ class ASH_EXPORT Shell : internal::SystemModalContainerEventFilterDelegate, scoped_ptr<internal::AppListController> app_list_controller_; - scoped_ptr<internal::StackingController> stacking_controller_; + scoped_ptr<aura::client::StackingClient> stacking_client_; scoped_ptr<internal::ActivationController> activation_controller_; scoped_ptr<internal::CaptureController> capture_controller_; scoped_ptr<internal::WindowModalityController> window_modality_controller_; |