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

Unified Diff: extensions/shell/browser/shell_extension_system_factory.h

Issue 667153007: Standardize usage of virtual/override/final specifiers. (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: extensions/shell/browser/shell_extension_system_factory.h
diff --git a/extensions/shell/browser/shell_extension_system_factory.h b/extensions/shell/browser/shell_extension_system_factory.h
index 516cec2bfbe60f3ac892a1ac4e0c4e534012af8a..5478d81628b93e531d415dedd5d429316165ac93 100644
--- a/extensions/shell/browser/shell_extension_system_factory.h
+++ b/extensions/shell/browser/shell_extension_system_factory.h
@@ -14,7 +14,7 @@ namespace extensions {
class ShellExtensionSystemFactory : public ExtensionSystemProvider {
public:
// ExtensionSystemProvider implementation:
- virtual ExtensionSystem* GetForBrowserContext(
+ ExtensionSystem* GetForBrowserContext(
content::BrowserContext* context) override;
static ShellExtensionSystemFactory* GetInstance();
@@ -23,14 +23,14 @@ class ShellExtensionSystemFactory : public ExtensionSystemProvider {
friend struct DefaultSingletonTraits<ShellExtensionSystemFactory>;
ShellExtensionSystemFactory();
- virtual ~ShellExtensionSystemFactory();
+ ~ShellExtensionSystemFactory() override;
// BrowserContextKeyedServiceFactory implementation:
- virtual KeyedService* BuildServiceInstanceFor(
+ KeyedService* BuildServiceInstanceFor(
content::BrowserContext* context) const override;
- virtual content::BrowserContext* GetBrowserContextToUse(
+ content::BrowserContext* GetBrowserContextToUse(
content::BrowserContext* context) const override;
- virtual bool ServiceIsCreatedWithBrowserContext() const override;
+ bool ServiceIsCreatedWithBrowserContext() const override;
DISALLOW_COPY_AND_ASSIGN(ShellExtensionSystemFactory);
};

Powered by Google App Engine
This is Rietveld 408576698