| Index: chrome/browser/component_updater/pnacl_component_installer.h
 | 
| diff --git a/chrome/browser/component_updater/pnacl_component_installer.h b/chrome/browser/component_updater/pnacl_component_installer.h
 | 
| index 3f3981c382854f17f94d1c66aac1ec1655df1442..5e44209c4ea2727540b62a970fa010404fdcb6a1 100644
 | 
| --- a/chrome/browser/component_updater/pnacl_component_installer.h
 | 
| +++ b/chrome/browser/component_updater/pnacl_component_installer.h
 | 
| @@ -43,9 +43,8 @@
 | 
|  
 | 
|    // ComponentInstaller implementation:
 | 
|    void OnUpdateError(int error) override;
 | 
| -  update_client::CrxInstaller::Result Install(
 | 
| -      const base::DictionaryValue& manifest,
 | 
| -      const base::FilePath& unpack_path) override;
 | 
| +  bool Install(const base::DictionaryValue& manifest,
 | 
| +               const base::FilePath& unpack_path) override;
 | 
|    bool GetInstalledFile(const std::string& file,
 | 
|                          base::FilePath* installed_file) override;
 | 
|    bool Uninstall() override;
 | 
| @@ -75,9 +74,6 @@
 | 
|   private:
 | 
|    ~PnaclComponentInstaller() override;
 | 
|  
 | 
| -  bool DoInstall(const base::DictionaryValue& manifest,
 | 
| -                 const base::FilePath& unpack_path);
 | 
| -
 | 
|    base::Version current_version_;
 | 
|    std::string current_fingerprint_;
 | 
|    ComponentUpdateService* cus_;
 | 
| 
 |