| Index: chrome/browser/extensions/extension_notification_observer.h
|
| diff --git a/chrome/browser/extensions/extension_notification_observer.h b/chrome/browser/extensions/extension_notification_observer.h
|
| index cfd8dd9c1c7c3bd282759ed53759fdd7bf9bb015..3d46ccfc359491176c9de5748f135cab6a2bcc3e 100644
|
| --- a/chrome/browser/extensions/extension_notification_observer.h
|
| +++ b/chrome/browser/extensions/extension_notification_observer.h
|
| @@ -26,7 +26,7 @@ class ExtensionNotificationObserver : public content::NotificationObserver {
|
| ExtensionNotificationObserver(content::NotificationSource source,
|
| const std::set<std::string>& extension_ids);
|
|
|
| - virtual ~ExtensionNotificationObserver();
|
| + ~ExtensionNotificationObserver() override;
|
|
|
| // Each of these methods returns a testing::AssertionSuccess if exactly those
|
| // notifications occurred for any extensions in |extension_ids|, and no more,
|
| @@ -51,9 +51,9 @@ class ExtensionNotificationObserver : public content::NotificationObserver {
|
|
|
| private:
|
| // content::NotificationObserver implementation.
|
| - virtual void Observe(int type,
|
| - const content::NotificationSource& source,
|
| - const content::NotificationDetails& details) override;
|
| + void Observe(int type,
|
| + const content::NotificationSource& source,
|
| + const content::NotificationDetails& details) override;
|
|
|
| // Checks then clears notifications for our extensions.
|
| testing::AssertionResult CheckNotifications(
|
|
|