Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(177)

Unified Diff: ui/views/controls/combobox/native_combobox_win.cc

Issue 10825254: Remove views::KeyEvent, replacing uses of it with ui::KeyEvent. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 8 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: ui/views/controls/combobox/native_combobox_win.cc
===================================================================
--- ui/views/controls/combobox/native_combobox_win.cc (revision 150588)
+++ ui/views/controls/combobox/native_combobox_win.cc (working copy)
@@ -6,6 +6,7 @@
#include "base/i18n/rtl.h"
#include "base/utf_string_conversions.h"
+#include "ui/base/event.h"
#include "ui/base/models/combobox_model.h"
#include "ui/base/native_theme/native_theme_win.h"
#include "ui/base/resource/resource_bundle.h"
@@ -140,11 +141,11 @@
OnFocus();
}
-bool NativeComboboxWin::HandleKeyPressed(const views::KeyEvent& event) {
+bool NativeComboboxWin::HandleKeyPressed(const ui::KeyEvent& event) {
return false;
}
-bool NativeComboboxWin::HandleKeyReleased(const views::KeyEvent& event) {
+bool NativeComboboxWin::HandleKeyReleased(const ui::KeyEvent& event) {
return false;
}
« no previous file with comments | « ui/views/controls/combobox/native_combobox_win.h ('k') | ui/views/controls/combobox/native_combobox_wrapper.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698