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); |
}; |