Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(3535)

Unified Diff: chrome/browser/extensions/external_provider_impl.h

Issue 666153002: Standardize usage of virtual/override/final in chrome/browser/extensions/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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[];
« no previous file with comments | « chrome/browser/extensions/external_pref_loader.h ('k') | chrome/browser/extensions/fake_safe_browsing_database_manager.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698