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(); |
} |