| Index: ash/wm/window_cycle_controller.cc
|
| diff --git a/ash/wm/window_cycle_controller.cc b/ash/wm/window_cycle_controller.cc
|
| index c497235e076a3d7be8341268d2b5530e28115a6c..24d05f1a93cfba89ff079c5460d973f5a5549177 100644
|
| --- a/ash/wm/window_cycle_controller.cc
|
| +++ b/ash/wm/window_cycle_controller.cc
|
| @@ -86,7 +86,7 @@ void WindowCycleController::HandleCycleWindow(Direction direction) {
|
|
|
| void WindowCycleController::StartCycling() {
|
| MruWindowTracker::WindowList window_list =
|
| - Shell::GetInstance()->mru_window_tracker()->BuildMruWindowList();
|
| + WmShell::Get()->mru_window_tracker()->BuildMruWindowList();
|
|
|
| active_window_before_window_cycle_ = GetActiveWindow(window_list);
|
|
|
| @@ -112,7 +112,7 @@ void WindowCycleController::StopCycling() {
|
| window_cycle_list_.reset();
|
|
|
| WmWindow* active_window_after_window_cycle = GetActiveWindow(
|
| - Shell::GetInstance()->mru_window_tracker()->BuildMruWindowList());
|
| + WmShell::Get()->mru_window_tracker()->BuildMruWindowList());
|
|
|
| // Remove our key event filter.
|
| event_handler_.reset();
|
|
|