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

Unified Diff: ui/message_center/views/message_popup_collection.h

Issue 623293004: replace OVERRIDE and FINAL with override and final in ui/ (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: ui/message_center/views/message_popup_collection.h
diff --git a/ui/message_center/views/message_popup_collection.h b/ui/message_center/views/message_popup_collection.h
index 8d6d644c68a262a800e538ba96a514024d044f79..f015319c5e0e167d1c8d08fafb8c571b92a2fedb 100644
--- a/ui/message_center/views/message_popup_collection.h
+++ b/ui/message_center/views/message_popup_collection.h
@@ -62,15 +62,15 @@ class MESSAGE_CENTER_EXPORT MessagePopupCollection
virtual ~MessagePopupCollection();
// Overridden from MessageCenterController:
- virtual void ClickOnNotification(const std::string& notification_id) OVERRIDE;
+ virtual void ClickOnNotification(const std::string& notification_id) override;
virtual void RemoveNotification(const std::string& notification_id,
- bool by_user) OVERRIDE;
+ bool by_user) override;
virtual scoped_ptr<ui::MenuModel> CreateMenuModel(
const NotifierId& notifier_id,
- const base::string16& display_source) OVERRIDE;
- virtual bool HasClickedListener(const std::string& notification_id) OVERRIDE;
+ const base::string16& display_source) override;
+ virtual bool HasClickedListener(const std::string& notification_id) override;
virtual void ClickOnNotificationButton(const std::string& notification_id,
- int button_index) OVERRIDE;
+ int button_index) override;
void MarkAllPopupsShown();
@@ -128,11 +128,11 @@ class MESSAGE_CENTER_EXPORT MessagePopupCollection
int GetBaseLine(ToastContentsView* last_toast) const;
// Overridden from 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;
ToastContentsView* FindToast(const std::string& notification_id) const;
« no previous file with comments | « ui/message_center/views/message_center_view_unittest.cc ('k') | ui/message_center/views/message_popup_collection_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698