| 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 c2a7d5a9d7999e95b5aa2eb644006ca3421af9df..4891aab1f8be1320e4dbf27a7b9e2de1e9da2264 100644
|
| --- a/chrome/browser/component_updater/recovery_component_installer.cc
|
| +++ b/chrome/browser/component_updater/recovery_component_installer.cc
|
| @@ -56,6 +56,9 @@ class RecoveryComponentInstaller : public ComponentInstaller {
|
| virtual bool Install(const base::DictionaryValue& manifest,
|
| const base::FilePath& unpack_path) OVERRIDE;
|
|
|
| + virtual bool GetInstalledFile(const std::string& file,
|
| + base::FilePath* installed_file) OVERRIDE;
|
| +
|
| private:
|
| Version current_version_;
|
| PrefService* prefs_;
|
| @@ -130,6 +133,11 @@ bool RecoveryComponentInstaller::Install(const base::DictionaryValue& manifest,
|
| return base::LaunchProcess(cmdline, base::LaunchOptions(), NULL);
|
| }
|
|
|
| +bool RecoveryComponentInstaller::GetInstalledFile(
|
| + const std::string& file, base::FilePath* installed_file) {
|
| + return false;
|
| +}
|
| +
|
| void RegisterRecoveryComponent(ComponentUpdateService* cus,
|
| PrefService* prefs) {
|
| #if !defined(OS_CHROMEOS)
|
|
|