diff options
Diffstat (limited to 'chrome/browser/prefs/pref_metrics_service.h')
-rw-r--r-- | chrome/browser/prefs/pref_metrics_service.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/chrome/browser/prefs/pref_metrics_service.h b/chrome/browser/prefs/pref_metrics_service.h index 2b6c67e..0335817 100644 --- a/chrome/browser/prefs/pref_metrics_service.h +++ b/chrome/browser/prefs/pref_metrics_service.h @@ -23,7 +23,7 @@ class PrefRegistrySimple; class PrefMetricsService : public KeyedService { public: explicit PrefMetricsService(Profile* profile); - virtual ~PrefMetricsService(); + ~PrefMetricsService() override; class Factory : public BrowserContextKeyedServiceFactory { public: @@ -33,14 +33,14 @@ class PrefMetricsService : public KeyedService { friend struct DefaultSingletonTraits<Factory>; Factory(); - virtual ~Factory(); + ~Factory() override; // BrowserContextKeyedServiceFactory implementation - virtual KeyedService* BuildServiceInstanceFor( + KeyedService* BuildServiceInstanceFor( content::BrowserContext* profile) const override; - virtual bool ServiceIsCreatedWithBrowserContext() const override; - virtual bool ServiceIsNULLWhileTesting() const override; - virtual content::BrowserContext* GetBrowserContextToUse( + bool ServiceIsCreatedWithBrowserContext() const override; + bool ServiceIsNULLWhileTesting() const override; + content::BrowserContext* GetBrowserContextToUse( content::BrowserContext* context) const override; }; |