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

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

Issue 624153002: replace OVERRIDE and FINAL with override and 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 a0e960a832076b6405441c1866252ad7d0b000a4..74cfadccd9f84fae1753c453cf3d218838bdc9e7 100644
--- a/chrome/browser/extensions/external_provider_impl.h
+++ b/chrome/browser/extensions/external_provider_impl.h
@@ -54,15 +54,15 @@ 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 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;
+ scoped_ptr<base::Version>* version) const override;
- virtual bool IsReady() const OVERRIDE;
+ virtual bool IsReady() const override;
static const char kExternalCrx[];
static const char kExternalVersion[];

Powered by Google App Engine
This is Rietveld 408576698