| Index: components/nacl/browser/nacl_process_host.h
|
| diff --git a/components/nacl/browser/nacl_process_host.h b/components/nacl/browser/nacl_process_host.h
|
| index 2e07c7ae4f60e9c0ddee81f1ab0085243be7c657..243e3a271daf0a439c3f1821e5a42881b6b2d44d 100644
|
| --- a/components/nacl/browser/nacl_process_host.h
|
| +++ b/components/nacl/browser/nacl_process_host.h
|
| @@ -7,6 +7,7 @@
|
|
|
| #include "build/build_config.h"
|
|
|
| +#include "base/files/file.h"
|
| #include "base/files/file_path.h"
|
| #include "base/files/file_util_proxy.h"
|
| #include "base/memory/ref_counted.h"
|
| @@ -60,6 +61,7 @@ class NaClProcessHost : public content::BrowserChildProcessHostDelegate {
|
| // off_the_record: was the process launched from an incognito renderer?
|
| // profile_directory: is the path of current profile directory.
|
| NaClProcessHost(const GURL& manifest_url,
|
| + base::File nexe_file,
|
| int render_view_id,
|
| uint32 permission_bits,
|
| bool uses_irt,
|
| @@ -184,6 +186,8 @@ class NaClProcessHost : public content::BrowserChildProcessHostDelegate {
|
| const IPC::ChannelHandle& manifest_service_channel_handle);
|
|
|
| GURL manifest_url_;
|
| + base::File nexe_file_;
|
| +
|
| ppapi::PpapiPermissions permissions_;
|
|
|
| #if defined(OS_WIN)
|
|
|