| Index: chrome/browser/chromeos/login/guest_user_view.cc
|
| ===================================================================
|
| --- chrome/browser/chromeos/login/guest_user_view.cc (revision 74326)
|
| +++ chrome/browser/chromeos/login/guest_user_view.cc (working copy)
|
| @@ -23,7 +23,7 @@
|
|
|
| // Overridden from views::View:
|
| virtual bool OnKeyPressed(const views::KeyEvent& e) {
|
| - if (e.GetKeyCode() == ui::VKEY_TAB) {
|
| + if (e.key_code() == ui::VKEY_TAB) {
|
| user_controller_->SelectUserRelative(e.IsShiftDown() ? -1 : 1);
|
| return true;
|
| }
|
| @@ -31,7 +31,7 @@
|
| }
|
|
|
| virtual bool SkipDefaultKeyEventProcessing(const views::KeyEvent& e) {
|
| - if (e.GetKeyCode() == ui::VKEY_TAB)
|
| + if (e.key_code() == ui::VKEY_TAB)
|
| return true;
|
| return WideButton::SkipDefaultKeyEventProcessing(e);
|
| }
|
|
|