| Index: chrome/browser/extensions/extension_test_notification_observer.h
|
| diff --git a/chrome/browser/extensions/extension_test_notification_observer.h b/chrome/browser/extensions/extension_test_notification_observer.h
|
| index bdb4ea65c7dae4f0ae3205ada313ded544c9b80c..be23e09dac3cd5d0981319d02fb5b117d2d7328f 100644
|
| --- a/chrome/browser/extensions/extension_test_notification_observer.h
|
| +++ b/chrome/browser/extensions/extension_test_notification_observer.h
|
| @@ -27,7 +27,7 @@ class ExtensionTestNotificationObserver
|
| public extensions::ExtensionActionAPI::Observer {
|
| public:
|
| explicit ExtensionTestNotificationObserver(Browser* browser);
|
| - virtual ~ExtensionTestNotificationObserver();
|
| + ~ExtensionTestNotificationObserver() override;
|
|
|
| // Wait for the number of visible page actions to change to |count|.
|
| bool WaitForPageActionVisibilityChangeTo(int count);
|
| @@ -78,9 +78,9 @@ class ExtensionTestNotificationObserver
|
| }
|
|
|
| // content::NotificationObserver
|
| - 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;
|
|
|
| private:
|
| class NotificationSet;
|
| @@ -100,7 +100,7 @@ class ExtensionTestNotificationObserver
|
| void MaybeQuit();
|
|
|
| // extensions::ExtensionActionAPI::Observer:
|
| - virtual void OnPageActionsUpdated(content::WebContents* contents) override;
|
| + void OnPageActionsUpdated(content::WebContents* contents) override;
|
|
|
| Browser* browser_;
|
| Profile* profile_;
|
|
|