| Index: chrome/browser/background/background_contents_service_factory.h
|
| diff --git a/chrome/browser/background/background_contents_service_factory.h b/chrome/browser/background/background_contents_service_factory.h
|
| index 97cac485293665f0909cd123c72bd65529bb944f..1df96cacb5b6ceb0dae4d94fbfaebc099bf975f7 100644
|
| --- a/chrome/browser/background/background_contents_service_factory.h
|
| +++ b/chrome/browser/background/background_contents_service_factory.h
|
| @@ -26,17 +26,17 @@ class BackgroundContentsServiceFactory
|
| friend struct DefaultSingletonTraits<BackgroundContentsServiceFactory>;
|
|
|
| BackgroundContentsServiceFactory();
|
| - virtual ~BackgroundContentsServiceFactory();
|
| + ~BackgroundContentsServiceFactory() override;
|
|
|
| // BrowserContextKeyedServiceFactory:
|
| - virtual KeyedService* BuildServiceInstanceFor(
|
| + KeyedService* BuildServiceInstanceFor(
|
| content::BrowserContext* profile) const override;
|
| - virtual void RegisterProfilePrefs(
|
| + void RegisterProfilePrefs(
|
| user_prefs::PrefRegistrySyncable* registry) 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_BACKGROUND_BACKGROUND_CONTENTS_SERVICE_FACTORY_H_
|
|
|