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

Unified Diff: chrome/browser/extensions/extension_action_manager.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_action_manager.h
diff --git a/chrome/browser/extensions/extension_action_manager.h b/chrome/browser/extensions/extension_action_manager.h
index 6f602bd336ccf4d1f6f2c0d9dea165fc27f8d337..53451d593d7752f27523cbc14bd4744c5c7562b9 100644
--- a/chrome/browser/extensions/extension_action_manager.h
+++ b/chrome/browser/extensions/extension_action_manager.h
@@ -27,7 +27,7 @@ class ExtensionActionManager : public KeyedService,
public ExtensionRegistryObserver {
public:
explicit ExtensionActionManager(Profile* profile);
- virtual ~ExtensionActionManager();
+ ~ExtensionActionManager() override;
// Returns this profile's ExtensionActionManager. One instance is
// shared between a profile and its incognito version.
@@ -56,10 +56,9 @@ class ExtensionActionManager : public KeyedService,
private:
// Implement ExtensionRegistryObserver.
- virtual void OnExtensionUnloaded(content::BrowserContext* browser_context,
- const Extension* extension,
- UnloadedExtensionInfo::Reason reason)
- override;
+ void OnExtensionUnloaded(content::BrowserContext* browser_context,
+ const Extension* extension,
+ UnloadedExtensionInfo::Reason reason) override;
Profile* profile_;

Powered by Google App Engine
This is Rietveld 408576698