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 a5e3e52c2997e0e26c8194ccdb1b75875f1496c4..fe54e29215049bea070af7d4b3ab298afd810ed0 100644 |
--- a/components/nacl/browser/nacl_process_host.h |
+++ b/components/nacl/browser/nacl_process_host.h |
@@ -63,6 +63,8 @@ class NaClProcessHost : public content::BrowserChildProcessHostDelegate { |
// profile_directory: is the path of current profile directory. |
NaClProcessHost(const GURL& manifest_url, |
base::File nexe_file, |
+ uint64_t nexe_token_lo, |
Mark Seaborn
2014/06/30 20:01:03
Could you pass this around as "struct NaClFileToke
teravest
2014/06/30 22:04:55
Done.
|
+ uint64_t nexe_token_hi, |
ppapi::PpapiPermissions permissions, |
int render_view_id, |
uint32 permission_bits, |
@@ -189,6 +191,8 @@ class NaClProcessHost : public content::BrowserChildProcessHostDelegate { |
GURL manifest_url_; |
base::File nexe_file_; |
+ uint64_t nexe_token_lo_; |
+ uint64_t nexe_token_hi_; |
ppapi::PpapiPermissions permissions_; |