Chromium Code Reviews| 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..de5c4a6110b1926eee12e4876d2ae54f9addf52c 100644 |
| --- a/components/nacl/browser/nacl_process_host.h |
| +++ b/components/nacl/browser/nacl_process_host.h |
| @@ -12,6 +12,7 @@ |
| #include "base/memory/ref_counted.h" |
| #include "base/memory/weak_ptr.h" |
| #include "base/message_loop/message_loop.h" |
| +#include "base/platform_file.h" |
| #include "base/process/process.h" |
| #include "components/nacl/common/nacl_types.h" |
| #include "content/public/browser/browser_child_process_host_delegate.h" |
| @@ -60,6 +61,9 @@ 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::PlatformFile nexe_file, |
| + uint64_t nexe_token_lo, |
| + uint64_t nexe_token_hi, |
| int render_view_id, |
| uint32 permission_bits, |
| bool uses_irt, |
| @@ -184,6 +188,10 @@ class NaClProcessHost : public content::BrowserChildProcessHostDelegate { |
| const IPC::ChannelHandle& manifest_service_channel_handle); |
| GURL manifest_url_; |
| + base::PlatformFile nexe_file_; |
|
Mark Seaborn
2014/06/17 00:50:30
Should this use base::File instead of PlatformFile
hidehiko
2014/06/18 08:43:32
Done.
|
| + uint64_t nexe_token_lo_; |
| + uint64_t nexe_token_hi_; |
| + |
| ppapi::PpapiPermissions permissions_; |
| #if defined(OS_WIN) |