| Index: chrome/browser/ui/views/chrome_views_delegate_chromeos.cc
|
| diff --git a/chrome/browser/ui/views/chrome_views_delegate_chromeos.cc b/chrome/browser/ui/views/chrome_views_delegate_chromeos.cc
|
| index acf1470a28caf793f0bcd659637ebb15f5a87c4b..805731903dcd3714798acc5a14362c7d01460ffb 100644
|
| --- a/chrome/browser/ui/views/chrome_views_delegate_chromeos.cc
|
| +++ b/chrome/browser/ui/views/chrome_views_delegate_chromeos.cc
|
| @@ -6,7 +6,6 @@
|
|
|
| #include "ash/common/accelerators/accelerator_controller.h"
|
| #include "ash/common/wm/window_state.h"
|
| -#include "ash/common/wm_shell.h"
|
| #include "ash/shell.h"
|
| #include "ash/wm/window_state_aura.h"
|
| #include "base/bind.h"
|
| @@ -21,7 +20,7 @@ namespace {
|
| void ProcessAcceleratorNow(const ui::Accelerator& accelerator) {
|
| // TODO(afakhry): See if we need here to send the accelerator to the
|
| // FocusManager of the active window in a follow-up CL.
|
| - ash::WmShell::Get()->accelerator_controller()->Process(accelerator);
|
| + ash::Shell::Get()->accelerator_controller()->Process(accelerator);
|
| }
|
|
|
| } // namespace
|
| @@ -36,7 +35,7 @@ ChromeViewsDelegate::ProcessAcceleratorWhileMenuShowing(
|
| return views::ViewsDelegate::ProcessMenuAcceleratorResult::LEAVE_MENU_OPEN;
|
|
|
| ash::AcceleratorController* accelerator_controller =
|
| - ash::WmShell::Get()->accelerator_controller();
|
| + ash::Shell::Get()->accelerator_controller();
|
|
|
| accelerator_controller->accelerator_history()->StoreCurrentAccelerator(
|
| accelerator);
|
|
|