| Index: views/controls/menu/native_menu_win.cc
|
| ===================================================================
|
| --- views/controls/menu/native_menu_win.cc (revision 58386)
|
| +++ views/controls/menu/native_menu_win.cc (working copy)
|
| @@ -4,9 +4,9 @@
|
|
|
| #include "views/controls/menu/native_menu_win.h"
|
|
|
| +#include "app/keyboard_codes.h"
|
| #include "app/l10n_util.h"
|
| #include "app/l10n_util_win.h"
|
| -#include "base/keyboard_codes.h"
|
| #include "base/logging.h"
|
| #include "base/stl_util-inl.h"
|
| #include "gfx/canvas_skia.h"
|
| @@ -554,7 +554,7 @@
|
| menus::MenuModel::ItemType type = model_->GetTypeAt(model_index);
|
| if (type != menus::MenuModel::TYPE_SUBMENU) {
|
| // Add accelerator details to the label if provided.
|
| - views::Accelerator accelerator(base::VKEY_UNKNOWN, false, false, false);
|
| + views::Accelerator accelerator(app::VKEY_UNKNOWN, false, false, false);
|
| if (model_->GetAcceleratorAt(model_index, &accelerator)) {
|
| formatted += L"\t";
|
| formatted += accelerator.GetShortcutText();
|
|
|