| Index: ash/accelerators/accelerator_commands.cc
|
| diff --git a/ash/accelerators/accelerator_commands.cc b/ash/accelerators/accelerator_commands.cc
|
| index 5ab32bf924ca8566fc403036c6e003dfbe45e636..bca8d16ac3f677fb82efa40377ed0fae5b8a7ebf 100644
|
| --- a/ash/accelerators/accelerator_commands.cc
|
| +++ b/ash/accelerators/accelerator_commands.cc
|
| @@ -7,6 +7,7 @@
|
| #include "ash/common/wm/mru_window_tracker.h"
|
| #include "ash/common/wm/window_state.h"
|
| #include "ash/common/wm/wm_event.h"
|
| +#include "ash/common/wm_shell.h"
|
| #include "ash/common/wm_window.h"
|
| #include "ash/display/display_manager.h"
|
| #include "ash/display/display_util.h"
|
| @@ -26,7 +27,7 @@ bool ToggleMinimized() {
|
| // the launcher when there is no active window.
|
| if (!window) {
|
| MruWindowTracker::WindowList mru_windows(
|
| - Shell::GetInstance()->mru_window_tracker()->BuildMruWindowList());
|
| + WmShell::Get()->mru_window_tracker()->BuildMruWindowList());
|
| if (!mru_windows.empty())
|
| mru_windows.front()->GetWindowState()->Activate();
|
| return true;
|
|
|