| 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;
|
|
|