| Index: chrome/browser/ui/views/accelerator_utils_aura.cc
|
| diff --git a/chrome/browser/ui/views/accelerator_utils_aura.cc b/chrome/browser/ui/views/accelerator_utils_aura.cc
|
| index 42f45929b60645c68ec7e48c23130d798f77804a..bc729aea7145bba25f90fdde63eca1abc338c8d0 100644
|
| --- a/chrome/browser/ui/views/accelerator_utils_aura.cc
|
| +++ b/chrome/browser/ui/views/accelerator_utils_aura.cc
|
| @@ -38,12 +38,12 @@ bool IsChromeAccelerator(const ui::Accelerator& accelerator, Profile* profile) {
|
|
|
| ui::Accelerator GetPrimaryChromeAcceleratorForCommandId(int command_id) {
|
| ui::Accelerator accelerator;
|
| - // GetAshAcceleratorForCommandId with HOST_DESKTOP_TYPE_ASH is used so we can
|
| + // GetAshAcceleratorForCommandId with ui::HOST_DESKTOP_TYPE_ASH is used so we
|
| + // can
|
| // find Ash accelerators if Ash is supported on this platform, even if it's
|
| // not currently in use.
|
| if (GetStandardAcceleratorForCommandId(command_id, &accelerator) ||
|
| - GetAshAcceleratorForCommandId(command_id,
|
| - HOST_DESKTOP_TYPE_ASH,
|
| + GetAshAcceleratorForCommandId(command_id, ui::HOST_DESKTOP_TYPE_ASH,
|
| &accelerator)) {
|
| return accelerator;
|
| }
|
|
|