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

Unified Diff: chrome/browser/notifications/notification_browsertest.cc

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/notification_browsertest.cc
diff --git a/chrome/browser/notifications/notification_browsertest.cc b/chrome/browser/notifications/notification_browsertest.cc
index f189feac7d352bde2d31999643effd8d72da25b0..fbbaecae28cb1855d25e80a7534c8a131af505d4 100644
--- a/chrome/browser/notifications/notification_browsertest.cc
+++ b/chrome/browser/notifications/notification_browsertest.cc
@@ -77,7 +77,7 @@ class MessageCenterChangeObserver
}
// NotificationChangeObserver:
- virtual bool Wait() OVERRIDE {
+ virtual bool Wait() override {
if (notification_received_)
return true;
@@ -88,17 +88,17 @@ class MessageCenterChangeObserver
// message_center::MessageCenterObserver:
virtual void OnNotificationAdded(
- const std::string& notification_id) OVERRIDE {
+ const std::string& notification_id) override {
OnMessageCenterChanged();
}
virtual void OnNotificationRemoved(const std::string& notification_id,
- bool by_user) OVERRIDE {
+ bool by_user) override {
OnMessageCenterChanged();
}
virtual void OnNotificationUpdated(
- const std::string& notification_id) OVERRIDE {
+ const std::string& notification_id) override {
OnMessageCenterChanged();
}

Powered by Google App Engine
This is Rietveld 408576698