diff options
-rw-r--r-- | chrome/browser/chromeos/login/existing_user_view.cc | 2 | ||||
-rw-r--r-- | chrome/browser/chromeos/login/new_user_view.cc | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/chrome/browser/chromeos/login/existing_user_view.cc b/chrome/browser/chromeos/login/existing_user_view.cc index 8655351..352c51b 100644 --- a/chrome/browser/chromeos/login/existing_user_view.cc +++ b/chrome/browser/chromeos/login/existing_user_view.cc @@ -43,7 +43,7 @@ class UserEntryTextfield : public TextfieldWithMargin { controller_->SelectUserRelative(1); return true; } else { - return false; + return TextfieldWithMargin::OnKeyPressed(e); } } diff --git a/chrome/browser/chromeos/login/new_user_view.cc b/chrome/browser/chromeos/login/new_user_view.cc index ab17d64..65d7f45 100644 --- a/chrome/browser/chromeos/login/new_user_view.cc +++ b/chrome/browser/chromeos/login/new_user_view.cc @@ -88,7 +88,7 @@ class UsernameField : public chromeos::TextfieldWithMargin { if (e.key_code() == ui::VKEY_LEFT) { return controller_->NavigateAway(); } - return false; + return TextfieldWithMargin::OnKeyPressed(e); } private: |