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

Unified Diff: chrome/browser/extensions/updater/extension_cache_fake.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/updater/extension_cache_fake.h
diff --git a/chrome/browser/extensions/updater/extension_cache_fake.h b/chrome/browser/extensions/updater/extension_cache_fake.h
index 8c3258b6ca355b1c21a489a97b897c66ad701552..e6014df6445e666196d713bfc3ed15980314323a 100644
--- a/chrome/browser/extensions/updater/extension_cache_fake.h
+++ b/chrome/browser/extensions/updater/extension_cache_fake.h
@@ -17,19 +17,19 @@ namespace extensions {
class ExtensionCacheFake : public ExtensionCache {
public:
ExtensionCacheFake();
- virtual ~ExtensionCacheFake();
+ ~ExtensionCacheFake() override;
// Implementation of ExtensionCache.
- virtual void Start(const base::Closure& callback) override;
- virtual void Shutdown(const base::Closure& callback) override;
- virtual void AllowCaching(const std::string& id) override;
- virtual bool GetExtension(const std::string& id,
- base::FilePath* file_path,
- std::string* version) override;
- virtual void PutExtension(const std::string& id,
- const base::FilePath& file_path,
- const std::string& version,
- const PutExtensionCallback& callback) override;
+ void Start(const base::Closure& callback) override;
+ void Shutdown(const base::Closure& callback) override;
+ void AllowCaching(const std::string& id) override;
+ bool GetExtension(const std::string& id,
+ base::FilePath* file_path,
+ std::string* version) override;
+ void PutExtension(const std::string& id,
+ const base::FilePath& file_path,
+ const std::string& version,
+ const PutExtensionCallback& callback) override;
private:
typedef std::map<std::string, std::pair<std::string, base::FilePath> > Map;
« no previous file with comments | « chrome/browser/extensions/unpacked_installer.cc ('k') | chrome/browser/extensions/updater/extension_updater.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698