| Index: chrome/browser/ui/ash/ash_util.cc
|
| diff --git a/chrome/browser/ui/ash/ash_util.cc b/chrome/browser/ui/ash/ash_util.cc
|
| index 6539132d14c0f8787a3701bb22f564791badaf86..eeb288aaa6e3f108b90b8e972ab87234d7665a92 100644
|
| --- a/chrome/browser/ui/ash/ash_util.cc
|
| +++ b/chrome/browser/ui/ash/ash_util.cc
|
| @@ -5,7 +5,7 @@
|
| #include "chrome/browser/ui/ash/ash_util.h"
|
|
|
| #include "ash/common/accelerators/accelerator_controller.h"
|
| -#include "ash/shell.h"
|
| +#include "ash/common/wm_shell.h"
|
| #include "build/build_config.h"
|
| #include "chrome/browser/ui/ash/ash_init.h"
|
| #include "ui/aura/window_event_dispatcher.h"
|
| @@ -33,9 +33,8 @@ bool IsAcceleratorDeprecated(const ui::Accelerator& accelerator) {
|
| if (chrome::IsRunningInMash())
|
| return false;
|
|
|
| - ash::AcceleratorController* controller =
|
| - ash::Shell::GetInstance()->accelerator_controller();
|
| - return controller->IsDeprecated(accelerator);
|
| + return ash::WmShell::Get()->accelerator_controller()->IsDeprecated(
|
| + accelerator);
|
| }
|
|
|
| } // namespace chrome
|
|
|