| Index: chrome/browser/component_updater/recovery_component_installer.cc
|
| diff --git a/chrome/browser/component_updater/recovery_component_installer.cc b/chrome/browser/component_updater/recovery_component_installer.cc
|
| index d52e84c77bc9f04b330487da2c0cd0a2e8c9d86a..f6b5727a1331714c4db37d52a88d90631f33e55d 100644
|
| --- a/chrome/browser/component_updater/recovery_component_installer.cc
|
| +++ b/chrome/browser/component_updater/recovery_component_installer.cc
|
| @@ -54,15 +54,15 @@ class RecoveryComponentInstaller : public ComponentInstaller {
|
| explicit RecoveryComponentInstaller(const Version& version,
|
| PrefService* prefs);
|
|
|
| - virtual ~RecoveryComponentInstaller() {}
|
| + ~RecoveryComponentInstaller() override {}
|
|
|
| - virtual void OnUpdateError(int error) override;
|
| + void OnUpdateError(int error) override;
|
|
|
| - virtual bool Install(const base::DictionaryValue& manifest,
|
| - const base::FilePath& unpack_path) override;
|
| + bool Install(const base::DictionaryValue& manifest,
|
| + const base::FilePath& unpack_path) override;
|
|
|
| - virtual bool GetInstalledFile(const std::string& file,
|
| - base::FilePath* installed_file) override;
|
| + bool GetInstalledFile(const std::string& file,
|
| + base::FilePath* installed_file) override;
|
|
|
| private:
|
| Version current_version_;
|
|
|