Index: components/nacl/browser/nacl_host_message_filter.cc |
diff --git a/components/nacl/browser/nacl_host_message_filter.cc b/components/nacl/browser/nacl_host_message_filter.cc |
index d98ac715a76185802b4607a5868eb3f9d702c58b..bd7c3ae9927aa62874c9a99676b4466f520b8da1 100644 |
--- a/components/nacl/browser/nacl_host_message_filter.cc |
+++ b/components/nacl/browser/nacl_host_message_filter.cc |
@@ -141,10 +141,15 @@ void NaClHostMessageFilter::LaunchNaClContinuation( |
const nacl::NaClLaunchParams& launch_params, |
IPC::Message* reply_msg, |
ppapi::PpapiPermissions permissions) { |
+ NaClFileToken nexe_token = { |
+ launch_params.nexe_token_lo, // lo |
+ launch_params.nexe_token_hi // hi |
+ }; |
NaClProcessHost* host = new NaClProcessHost( |
GURL(launch_params.manifest_url), |
base::File( |
IPC::PlatformFileForTransitToPlatformFile(launch_params.nexe_file)), |
+ nexe_token, |
permissions, |
launch_params.render_view_id, |
launch_params.permission_bits, |