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

Unified Diff: chrome/browser/chromeos/login/user_controller.cc

Issue 3165064: Move the keyboard files from base/ to app/. (Closed) Base URL: http://src.chromium.org/git/chromium.git
Patch Set: latest merge Created 10 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: chrome/browser/chromeos/login/user_controller.cc
diff --git a/chrome/browser/chromeos/login/user_controller.cc b/chrome/browser/chromeos/login/user_controller.cc
index 75ba03f8d0da8792671ead3a072237efa8cc92f8..77450c477ffd2a773faaf50a7196e1a0f35fbc6c 100644
--- a/chrome/browser/chromeos/login/user_controller.cc
+++ b/chrome/browser/chromeos/login/user_controller.cc
@@ -209,13 +209,13 @@ void UserController::ButtonPressed(views::Button* sender,
bool UserController::HandleKeystroke(
views::Textfield* sender,
const views::Textfield::Keystroke& keystroke) {
- if (keystroke.GetKeyboardCode() == base::VKEY_RETURN) {
+ if (keystroke.GetKeyboardCode() == app::VKEY_RETURN) {
Login();
return true;
- } else if (keystroke.GetKeyboardCode() == base::VKEY_LEFT) {
+ } else if (keystroke.GetKeyboardCode() == app::VKEY_LEFT) {
SelectUser(user_index() - 1);
return true;
- } else if (keystroke.GetKeyboardCode() == base::VKEY_RIGHT) {
+ } else if (keystroke.GetKeyboardCode() == app::VKEY_RIGHT) {
SelectUser(user_index() + 1);
return true;
}
« no previous file with comments | « chrome/browser/chromeos/login/update_view.cc ('k') | chrome/browser/chromeos/login/wizard_accessibility_helper.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698