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

Unified Diff: chrome/browser/notifications/message_center_stats_collector.h

Issue 624173002: replace OVERRIDE and FINAL with override and final in chrome/browser/[j-q]* (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase on master 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
Index: chrome/browser/notifications/message_center_stats_collector.h
diff --git a/chrome/browser/notifications/message_center_stats_collector.h b/chrome/browser/notifications/message_center_stats_collector.h
index b14cfb0cdb85924e5f764467e01ec0f272424a99..a64765eebd8406cc69e95416735a4309aa4f2c5b 100644
--- a/chrome/browser/notifications/message_center_stats_collector.h
+++ b/chrome/browser/notifications/message_center_stats_collector.h
@@ -63,21 +63,21 @@ class MessageCenterStatsCollector
};
// MessageCenterObserver
- virtual void OnNotificationAdded(const std::string& notification_id) OVERRIDE;
+ virtual void OnNotificationAdded(const std::string& notification_id) override;
virtual void OnNotificationRemoved(const std::string& notification_id,
- bool by_user) OVERRIDE;
+ bool by_user) override;
virtual void OnNotificationUpdated(
- const std::string& notification_id) OVERRIDE;
+ const std::string& notification_id) override;
virtual void OnNotificationClicked(
- const std::string& notification_id) OVERRIDE;
+ const std::string& notification_id) override;
virtual void OnNotificationButtonClicked(const std::string& notification_id,
- int button_index) OVERRIDE;
+ int button_index) override;
virtual void OnNotificationDisplayed(
const std::string& notification_id,
- const message_center::DisplaySource source) OVERRIDE;
+ const message_center::DisplaySource source) override;
virtual void OnCenterVisibilityChanged(
- message_center::Visibility visibility) OVERRIDE;
- virtual void OnQuietModeChanged(bool in_quiet_mode) OVERRIDE;
+ message_center::Visibility visibility) override;
+ virtual void OnQuietModeChanged(bool in_quiet_mode) override;
// Weak, global.
message_center::MessageCenter* message_center_;

Powered by Google App Engine
This is Rietveld 408576698