| 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 a02d772f9dbfc24249c95ae979ddbc85f4afbf93..a5e3e52c2997e0e26c8194ccdb1b75875f1496c4 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"
|
| @@ -61,6 +62,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,
|
| ppapi::PpapiPermissions permissions,
|
| int render_view_id,
|
| uint32 permission_bits,
|
| @@ -186,6 +188,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)
|
|
|