| Index: chrome/browser/component_updater/pnacl/pnacl_component_installer.h
|
| diff --git a/chrome/browser/component_updater/pnacl/pnacl_component_installer.h b/chrome/browser/component_updater/pnacl/pnacl_component_installer.h
|
| index 9ba2997297b63ce6c0fd64f75b84c4a0b6bf97d1..3ecf2a9cdbe6da86e3af23218e16fe8f4268312a 100644
|
| --- a/chrome/browser/component_updater/pnacl/pnacl_component_installer.h
|
| +++ b/chrome/browser/component_updater/pnacl/pnacl_component_installer.h
|
| @@ -5,6 +5,9 @@
|
| #ifndef CHROME_BROWSER_COMPONENT_UPDATER_PNACL_PNACL_COMPONENT_INSTALLER_H_
|
| #define CHROME_BROWSER_COMPONENT_UPDATER_PNACL_PNACL_COMPONENT_INSTALLER_H_
|
|
|
| +#include <string>
|
| +
|
| +#include "base/compiler_specific.h"
|
| #include "base/files/file_path.h"
|
| #include "base/memory/scoped_ptr.h"
|
| #include "base/version.h"
|
| @@ -31,6 +34,9 @@ class PnaclComponentInstaller : 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;
|
| +
|
| // Register a PNaCl component for the first time.
|
| void RegisterPnaclComponent(ComponentUpdateService* cus,
|
| const CommandLine& command_line);
|
|
|