Index: ash/shell.cc |
diff --git a/ash/shell.cc b/ash/shell.cc |
index 9a8841b691be17e2e6f694ab8a4cc643db8adc34..7c940d4198d00bc29e1a2ac66d01f46963749b06 100644 |
--- a/ash/shell.cc |
+++ b/ash/shell.cc |
@@ -56,7 +56,6 @@ |
#include "ash/wm/session_state_controller.h" |
#include "ash/wm/session_state_controller_impl.h" |
#include "ash/wm/session_state_controller_impl2.h" |
-#include "ash/wm/stacking_controller.h" |
#include "ash/wm/system_gesture_event_filter.h" |
#include "ash/wm/system_modal_container_event_filter.h" |
#include "ash/wm/system_modal_container_layout_manager.h" |
@@ -71,7 +70,6 @@ |
#include "base/command_line.h" |
#include "base/debug/leak_annotations.h" |
#include "ui/aura/client/aura_constants.h" |
-#include "ui/aura/client/stacking_client.h" |
#include "ui/aura/client/user_action_client.h" |
#include "ui/aura/env.h" |
#include "ui/aura/focus_manager.h" |
@@ -502,9 +500,6 @@ void Shell::Init() { |
// Create Controllers that may need root window. |
// TODO(oshima): Move as many controllers before creating |
// RootWindowController as possible. |
- stacking_client_.reset(delegate_->CreateStackingClient()); |
- if (stacking_client_.get()) |
- aura::client::SetStackingClient(stacking_client_.get()); |
visibility_controller_.reset(new AshVisibilityController); |
drag_drop_controller_.reset(new internal::DragDropController); |
user_action_client_.reset(delegate_->CreateUserActionClient()); |
@@ -835,10 +830,6 @@ void Shell::DoInitialWorkspaceAnimation() { |
DoInitialAnimation(); |
} |
-aura::client::StackingClient* Shell::stacking_client() { |
- return stacking_client_.get(); |
-} |
- |
void Shell::InitRootWindowController( |
internal::RootWindowController* controller) { |
aura::RootWindow* root_window = controller->root_window(); |