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

Unified Diff: ash/system/chromeos/tray_caps_lock.cc

Issue 621133002: replace OVERRIDE and FINAL with override and final in ash/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 2 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
« no previous file with comments | « ash/system/chromeos/tray_caps_lock.h ('k') | ash/system/chromeos/tray_display.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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) {
« no previous file with comments | « ash/system/chromeos/tray_caps_lock.h ('k') | ash/system/chromeos/tray_display.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698