| Index: ash/common/wm_shell.cc
|
| diff --git a/ash/common/wm_shell.cc b/ash/common/wm_shell.cc
|
| index f0d1b68753d7d4523424468dbfa927277f6bdd99..974c1dbe45d6a407d975be53eaabed574dccbf14 100644
|
| --- a/ash/common/wm_shell.cc
|
| +++ b/ash/common/wm_shell.cc
|
| @@ -8,6 +8,7 @@
|
| #include "ash/common/shell_window_ids.h"
|
| #include "ash/common/system/tray/system_tray_delegate.h"
|
| #include "ash/common/system/tray/wm_system_tray_notifier.h"
|
| +#include "ash/common/wm/overview/window_selector_controller.h"
|
| #include "ash/common/wm_window.h"
|
| #include "base/logging.h"
|
|
|
| @@ -28,7 +29,8 @@ WmShell* WmShell::Get() {
|
|
|
| WmShell::WmShell()
|
| : focus_cycler_(new FocusCycler),
|
| - system_tray_notifier_(new WmSystemTrayNotifier) {}
|
| + system_tray_notifier_(new WmSystemTrayNotifier),
|
| + window_selector_controller_(new WindowSelectorController()) {}
|
|
|
| WmShell::~WmShell() {}
|
|
|
| @@ -66,4 +68,8 @@ void WmShell::SetSystemTrayDelegate(
|
| }
|
| }
|
|
|
| +void WmShell::DeleteWindowSelectorController() {
|
| + window_selector_controller_.reset();
|
| +}
|
| +
|
| } // namespace ash
|
|
|