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

Unified Diff: chrome/browser/extensions/updater/extension_cache.cc

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/updater/extension_cache.cc
diff --git a/chrome/browser/extensions/updater/extension_cache.cc b/chrome/browser/extensions/updater/extension_cache.cc
index 7889969b89d8f6dd57829aa305b6f45b82f5fe3c..c9111c7897911b6271fdb62e8c37b63ba5f1a286 100644
--- a/chrome/browser/extensions/updater/extension_cache.cc
+++ b/chrome/browser/extensions/updater/extension_cache.cc
@@ -24,27 +24,27 @@ class ExtensionCacheNullImpl : public ExtensionCache {
}
// Implementation of ExtensionCache.
- virtual void Start(const base::Closure& callback) OVERRIDE {
+ virtual void Start(const base::Closure& callback) override {
callback.Run();
}
- virtual void Shutdown(const base::Closure& callback) OVERRIDE {
+ virtual void Shutdown(const base::Closure& callback) override {
callback.Run();
}
- virtual void AllowCaching(const std::string& id) OVERRIDE {
+ virtual void AllowCaching(const std::string& id) override {
}
virtual bool GetExtension(const std::string& id,
base::FilePath* file_path,
- std::string* version) OVERRIDE {
+ std::string* version) override {
return false;
}
virtual void PutExtension(const std::string& id,
const base::FilePath& file_path,
const std::string& version,
- const PutExtensionCallback& callback) OVERRIDE {
+ const PutExtensionCallback& callback) override {
callback.Run(file_path, true);
}
« no previous file with comments | « chrome/browser/extensions/unpacked_installer.cc ('k') | chrome/browser/extensions/updater/extension_cache_fake.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698