| Index: chrome/browser/search_engines/template_url_service_factory.h
|
| diff --git a/chrome/browser/search_engines/template_url_service_factory.h b/chrome/browser/search_engines/template_url_service_factory.h
|
| index e7f1e2f57151a1eeecfd5366816bd84658b1a1d6..9939278da2b2821ce8c5477310b2b961bd400e4e 100644
|
| --- a/chrome/browser/search_engines/template_url_service_factory.h
|
| +++ b/chrome/browser/search_engines/template_url_service_factory.h
|
| @@ -25,16 +25,16 @@ class TemplateURLServiceFactory : public BrowserContextKeyedServiceFactory {
|
| friend struct DefaultSingletonTraits<TemplateURLServiceFactory>;
|
|
|
| TemplateURLServiceFactory();
|
| - virtual ~TemplateURLServiceFactory();
|
| + ~TemplateURLServiceFactory() 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 ServiceIsNULLWhileTesting() const override;
|
| + bool ServiceIsNULLWhileTesting() const override;
|
| };
|
|
|
| #endif // CHROME_BROWSER_SEARCH_ENGINES_TEMPLATE_URL_SERVICE_FACTORY_H_
|
|
|