Index: chrome/browser/extensions/external_provider_impl.h |
diff --git a/chrome/browser/extensions/external_provider_impl.h b/chrome/browser/extensions/external_provider_impl.h |
index 74cfadccd9f84fae1753c453cf3d218838bdc9e7..0ba5e51647d8edc3892b11667d33562ea7a86dee 100644 |
--- a/chrome/browser/extensions/external_provider_impl.h |
+++ b/chrome/browser/extensions/external_provider_impl.h |
@@ -41,7 +41,7 @@ class ExternalProviderImpl : public ExternalProviderInterface { |
Manifest::Location download_location, |
int creation_flags); |
- virtual ~ExternalProviderImpl(); |
+ ~ExternalProviderImpl() override; |
// Populates a list with providers for all known sources. |
static void CreateExternalProviders( |
@@ -54,15 +54,14 @@ class ExternalProviderImpl : public ExternalProviderInterface { |
virtual void SetPrefs(base::DictionaryValue* prefs); |
// ExternalProvider implementation: |
- virtual void ServiceShutdown() override; |
- virtual void VisitRegisteredExtension() override; |
- virtual bool HasExtension(const std::string& id) const override; |
- virtual bool GetExtensionDetails( |
- const std::string& id, |
- Manifest::Location* location, |
- scoped_ptr<base::Version>* version) const override; |
- |
- virtual bool IsReady() const override; |
+ void ServiceShutdown() override; |
+ void VisitRegisteredExtension() override; |
+ bool HasExtension(const std::string& id) const override; |
+ bool GetExtensionDetails(const std::string& id, |
+ Manifest::Location* location, |
+ scoped_ptr<base::Version>* version) const override; |
+ |
+ bool IsReady() const override; |
static const char kExternalCrx[]; |
static const char kExternalVersion[]; |