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

Unified Diff: chrome/browser/notifications/message_center_notification_manager.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_notification_manager.h
diff --git a/chrome/browser/notifications/message_center_notification_manager.h b/chrome/browser/notifications/message_center_notification_manager.h
index 6fa5d78b36718c1f732e39df9bf19fcc94691c0e..af449a79a8b967cd8f3ba0abb3aadbb4d4309f5c 100644
--- a/chrome/browser/notifications/message_center_notification_manager.h
+++ b/chrome/browser/notifications/message_center_notification_manager.h
@@ -52,26 +52,26 @@ class MessageCenterNotificationManager
// NotificationUIManager
virtual void Add(const Notification& notification,
- Profile* profile) OVERRIDE;
+ Profile* profile) override;
virtual bool Update(const Notification& notification,
- Profile* profile) OVERRIDE;
+ Profile* profile) override;
virtual const Notification* FindById(const std::string& delegate_id,
- ProfileID profile_id) const OVERRIDE;
+ ProfileID profile_id) const override;
virtual bool CancelById(const std::string& delegate_id,
- ProfileID profile_id) OVERRIDE;
+ ProfileID profile_id) override;
virtual std::set<std::string> GetAllIdsByProfileAndSourceOrigin(
Profile* profile,
- const GURL& source) OVERRIDE;
- virtual bool CancelAllBySourceOrigin(const GURL& source_origin) OVERRIDE;
- virtual bool CancelAllByProfile(ProfileID profile_id) OVERRIDE;
- virtual void CancelAll() OVERRIDE;
+ const GURL& source) override;
+ virtual bool CancelAllBySourceOrigin(const GURL& source_origin) override;
+ virtual bool CancelAllByProfile(ProfileID profile_id) override;
+ virtual void CancelAll() override;
// MessageCenterObserver
virtual void OnNotificationRemoved(const std::string& notification_id,
- bool by_user) OVERRIDE;
- virtual void OnCenterVisibilityChanged(message_center::Visibility) OVERRIDE;
+ bool by_user) override;
+ virtual void OnCenterVisibilityChanged(message_center::Visibility) override;
virtual void OnNotificationUpdated(const std::string& notification_id)
- OVERRIDE;
+ override;
void EnsureMessageCenterClosed();
@@ -169,7 +169,7 @@ class MessageCenterNotificationManager
void StartDownloads();
// Overridden from ImageDownloadsObserver.
- virtual void OnDownloadsCompleted() OVERRIDE;
+ virtual void OnDownloadsCompleted() override;
Profile* profile() const { return profile_; }
const Notification& notification() const { return notification_; }

Powered by Google App Engine
This is Rietveld 408576698