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

Unified Diff: ash/system/tray/default_system_tray_delegate.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/tray/default_system_tray_delegate.h ('k') | ash/system/tray/fixed_sized_image_view.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ash/system/tray/default_system_tray_delegate.cc
diff --git a/ash/system/tray/default_system_tray_delegate.cc b/ash/system/tray/default_system_tray_delegate.cc
index fda48075ec2a16db115abc50ec9a13f781bd3346..1d99fb92eca45a9baf4922d9c48490c7116a4577 100644
--- a/ash/system/tray/default_system_tray_delegate.cc
+++ b/ash/system/tray/default_system_tray_delegate.cc
@@ -21,13 +21,13 @@ class DefaultVolumnControlDelegate : public VolumeControlDelegate {
DefaultVolumnControlDelegate() {}
virtual ~DefaultVolumnControlDelegate() {}
- virtual bool HandleVolumeMute(const ui::Accelerator& accelerator) OVERRIDE {
+ virtual bool HandleVolumeMute(const ui::Accelerator& accelerator) override {
return true;
}
- virtual bool HandleVolumeDown(const ui::Accelerator& accelerator) OVERRIDE {
+ virtual bool HandleVolumeDown(const ui::Accelerator& accelerator) override {
return true;
}
- virtual bool HandleVolumeUp(const ui::Accelerator& accelerator) OVERRIDE {
+ virtual bool HandleVolumeUp(const ui::Accelerator& accelerator) override {
return true;
}
« no previous file with comments | « ash/system/tray/default_system_tray_delegate.h ('k') | ash/system/tray/fixed_sized_image_view.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698