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

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

Issue 667283002: Standardize usage of virtual/override/final in chrome/browser/notifications (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
Index: chrome/browser/notifications/google_now_notification_stats_collector.h
diff --git a/chrome/browser/notifications/google_now_notification_stats_collector.h b/chrome/browser/notifications/google_now_notification_stats_collector.h
index 3ead04645eeb0c73cf82819fb877dffe08bef2e3..9ce460bb90568a77a14b8b52c724293e72829b13 100644
--- a/chrome/browser/notifications/google_now_notification_stats_collector.h
+++ b/chrome/browser/notifications/google_now_notification_stats_collector.h
@@ -18,14 +18,14 @@ class GoogleNowNotificationStatsCollector
public:
explicit GoogleNowNotificationStatsCollector(
message_center::MessageCenter* message_center);
- virtual ~GoogleNowNotificationStatsCollector();
+ ~GoogleNowNotificationStatsCollector() override;
private:
// MessageCenterObserver
- virtual void OnNotificationDisplayed(
+ void OnNotificationDisplayed(
const std::string& notification_id,
const message_center::DisplaySource source) override;
- virtual void OnCenterVisibilityChanged(
+ void OnCenterVisibilityChanged(
message_center::Visibility visibility) override;
// Counts the number of Google Now Notifications in the message center.

Powered by Google App Engine
This is Rietveld 408576698