| Index: chrome/browser/apps/ephemeral_app_service_factory.h
|
| diff --git a/chrome/browser/apps/ephemeral_app_service_factory.h b/chrome/browser/apps/ephemeral_app_service_factory.h
|
| index b6b70c1adc645508ad893fce639f68d1f5e7b774..ea9b0ebf9fd8f788c6ffb8872d2b12b1b55dfce2 100644
|
| --- a/chrome/browser/apps/ephemeral_app_service_factory.h
|
| +++ b/chrome/browser/apps/ephemeral_app_service_factory.h
|
| @@ -21,15 +21,15 @@ class EphemeralAppServiceFactory : public BrowserContextKeyedServiceFactory {
|
| friend struct DefaultSingletonTraits<EphemeralAppServiceFactory>;
|
|
|
| EphemeralAppServiceFactory();
|
| - virtual ~EphemeralAppServiceFactory();
|
| + ~EphemeralAppServiceFactory() 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;
|
| - virtual bool ServiceIsNULLWhileTesting() const override;
|
| + bool ServiceIsCreatedWithBrowserContext() const override;
|
| + bool ServiceIsNULLWhileTesting() const override;
|
| };
|
|
|
| #endif // CHROME_BROWSER_APPS_EPHEMERAL_APP_SERVICE_FACTORY_H_
|
|
|