Index: chrome/browser/extensions/api/dial/dial_api_factory.h |
diff --git a/chrome/browser/extensions/api/dial/dial_api_factory.h b/chrome/browser/extensions/api/dial/dial_api_factory.h |
index 7cf6dab11c81f1a3642143f298d986701ac3a34a..9bfc05d45f3b61527b730746138696fe301356c6 100644 |
--- a/chrome/browser/extensions/api/dial/dial_api_factory.h |
+++ b/chrome/browser/extensions/api/dial/dial_api_factory.h |
@@ -23,13 +23,13 @@ class DialAPIFactory : public RefcountedBrowserContextKeyedServiceFactory { |
friend struct DefaultSingletonTraits<DialAPIFactory>; |
DialAPIFactory(); |
- virtual ~DialAPIFactory(); |
+ ~DialAPIFactory() override; |
// BrowserContextKeyedServiceFactory: |
- virtual scoped_refptr<RefcountedKeyedService> BuildServiceInstanceFor( |
+ scoped_refptr<RefcountedKeyedService> BuildServiceInstanceFor( |
content::BrowserContext* profile) const override; |
- virtual bool ServiceIsCreatedWithBrowserContext() const override; |
- virtual bool ServiceIsNULLWhileTesting() const override; |
+ bool ServiceIsCreatedWithBrowserContext() const override; |
+ bool ServiceIsNULLWhileTesting() const override; |
DISALLOW_COPY_AND_ASSIGN(DialAPIFactory); |
}; |