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

Unified Diff: extensions/browser/extension_registry.h

Issue 664933004: Standardize usage of virtual/override/final in 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
« no previous file with comments | « extensions/browser/extension_protocols.cc ('k') | extensions/browser/extension_registry_factory.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: extensions/browser/extension_registry.h
diff --git a/extensions/browser/extension_registry.h b/extensions/browser/extension_registry.h
index 9221a77bb7b6c8bc3856f6aea0fc52d68738bcd5..50f75c9b7cdb42e45cc3c14457e086d02c493345 100644
--- a/extensions/browser/extension_registry.h
+++ b/extensions/browser/extension_registry.h
@@ -42,7 +42,7 @@ class ExtensionRegistry : public KeyedService {
};
explicit ExtensionRegistry(content::BrowserContext* browser_context);
- virtual ~ExtensionRegistry();
+ ~ExtensionRegistry() override;
// Returns the instance for the given |browser_context|.
static ExtensionRegistry* Get(content::BrowserContext* browser_context);
@@ -146,7 +146,7 @@ class ExtensionRegistry : public KeyedService {
const ExtensionSet::ModificationCallback& callback);
// KeyedService implementation:
- virtual void Shutdown() override;
+ void Shutdown() override;
private:
// Extensions that are installed, enabled and not terminated.
« no previous file with comments | « extensions/browser/extension_protocols.cc ('k') | extensions/browser/extension_registry_factory.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698