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

Unified Diff: chrome/browser/extensions/api/webstore/webstore_api.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/api/webstore/webstore_api.h
diff --git a/chrome/browser/extensions/api/webstore/webstore_api.h b/chrome/browser/extensions/api/webstore/webstore_api.h
index 0410445b59f894e574859c500086fa4a2b2ecb39..f5ecc50a1011fde4ebdd1033c542d1646a2dbf76 100644
--- a/chrome/browser/extensions/api/webstore/webstore_api.h
+++ b/chrome/browser/extensions/api/webstore/webstore_api.h
@@ -77,14 +77,14 @@ class WebstoreAPI : public BrowserContextKeyedAPI,
// InstallObserver implementation.
virtual void OnBeginExtensionDownload(const std::string& extension_id)
- OVERRIDE;
+ override;
virtual void OnDownloadProgress(const std::string& extension_id,
- int percent_downloaded) OVERRIDE;
- virtual void OnBeginCrxInstall(const std::string& extension_id) OVERRIDE;
- virtual void OnShutdown() OVERRIDE;
+ int percent_downloaded) override;
+ virtual void OnBeginCrxInstall(const std::string& extension_id) override;
+ virtual void OnShutdown() override;
// BrowserContextKeyedService implementation.
- virtual void Shutdown() OVERRIDE;
+ virtual void Shutdown() override;
// BrowserContextKeyedAPI implementation.
static const char* service_name() { return "WebstoreAPI"; }

Powered by Google App Engine
This is Rietveld 408576698