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

Unified Diff: chrome/browser/extensions/extension_test_notification_observer.h

Issue 666153002: Standardize usage of virtual/override/final in chrome/browser/extensions/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: 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/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_;
« no previous file with comments | « chrome/browser/extensions/extension_tabs_apitest.cc ('k') | chrome/browser/extensions/extension_test_notification_observer.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698