| Index: ash/system/chromeos/tray_caps_lock.cc
 | 
| diff --git a/ash/system/chromeos/tray_caps_lock.cc b/ash/system/chromeos/tray_caps_lock.cc
 | 
| index 2a1d7325df09b8512fcf5c308d239296d16f5443..0a29fcd5b89264438d2603ef2072c3c1ea39ec0b 100644
 | 
| --- a/ash/system/chromeos/tray_caps_lock.cc
 | 
| +++ b/ash/system/chromeos/tray_caps_lock.cc
 | 
| @@ -90,7 +90,7 @@ class CapsLockDefaultView : public ActionableView {
 | 
|  
 | 
|   private:
 | 
|    // Overridden from views::View:
 | 
| -  virtual void Layout() OVERRIDE {
 | 
| +  virtual void Layout() override {
 | 
|      views::View::Layout();
 | 
|  
 | 
|      // Align the shortcut text with the right end
 | 
| @@ -103,13 +103,13 @@ class CapsLockDefaultView : public ActionableView {
 | 
|                                     text_size.height()));
 | 
|    }
 | 
|  
 | 
| -  virtual void GetAccessibleState(ui::AXViewState* state) OVERRIDE {
 | 
| +  virtual void GetAccessibleState(ui::AXViewState* state) override {
 | 
|      state->role = ui::AX_ROLE_BUTTON;
 | 
|      state->name = text_label_->text();
 | 
|    }
 | 
|  
 | 
|    // Overridden from ActionableView:
 | 
| -  virtual bool PerformAction(const ui::Event& event) OVERRIDE {
 | 
| +  virtual bool PerformAction(const ui::Event& event) override {
 | 
|      chromeos::input_method::ImeKeyboard* keyboard =
 | 
|          chromeos::input_method::InputMethodManager::Get()->GetImeKeyboard();
 | 
|      if (keyboard) {
 | 
| 
 |