| Index: chrome/browser/ui/views/omnibox/omnibox_view_win.cc
|
| diff --git a/chrome/browser/ui/views/omnibox/omnibox_view_win.cc b/chrome/browser/ui/views/omnibox/omnibox_view_win.cc
|
| index d2994090c27338bfa6c6c791ebbcf080d5b0a6c3..b9b25d1feb26d024a490c7a6d9487f5dff95f477 100644
|
| --- a/chrome/browser/ui/views/omnibox/omnibox_view_win.cc
|
| +++ b/chrome/browser/ui/views/omnibox/omnibox_view_win.cc
|
| @@ -48,12 +48,12 @@
|
| #include "ui/base/keycodes/keyboard_codes.h"
|
| #include "ui/base/l10n/l10n_util.h"
|
| #include "ui/base/l10n/l10n_util_win.h"
|
| +#include "ui/base/win/event_util.h"
|
| #include "ui/base/win/mouse_wheel_util.h"
|
| #include "ui/gfx/canvas.h"
|
| #include "ui/gfx/canvas_skia.h"
|
| #include "views/controls/textfield/native_textfield_win.h"
|
| #include "views/drag_utils.h"
|
| -#include "views/events/event_utils_win.h"
|
| #include "views/widget/widget.h"
|
|
|
| #pragma comment(lib, "oleacc.lib") // Needed for accessibility support.
|
| @@ -994,7 +994,7 @@ bool OmniboxViewWin::SkipDefaultKeyEventProcessing(
|
| // entering special characters. We do translate alt-home.
|
| if (event.IsAltDown() && (key != ui::VKEY_HOME) &&
|
| views::NativeTextfieldWin::IsNumPadDigit(key,
|
| - views::IsExtendedKey(event)))
|
| + ui::IsExtendedKey(event.native_event())))
|
| return true;
|
|
|
| // Skip accelerators for key combinations omnibox wants to crack. This list
|
|
|