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..659d9f06744bbfde2e7d34f73cdd58cc11db3d25 100644 |
--- a/components/nacl/browser/nacl_process_host.h |
+++ b/components/nacl/browser/nacl_process_host.h |
@@ -46,6 +46,9 @@ class NaClProcessHost : public content::BrowserChildProcessHostDelegate { |
public: |
// manifest_url: the URL of the manifest of the Native Client plugin being |
// executed. |
+ // nexe_file: A file that corresponds to the nexe module to be loaded. |
+ // nexe_token_lo: A cache validation token for nexe_file. |
+ // nexe_token_hi: A cache validation token for nexe_file. |
// permissions: PPAPI permissions, to control access to private APIs. |
// render_view_id: RenderView routing id, to control access to private APIs. |
// permission_bits: controls which interfaces the NaCl plugin can use. |
@@ -63,6 +66,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, |
+ uint64_t nexe_token_hi, |
ppapi::PpapiPermissions permissions, |
int render_view_id, |
uint32 permission_bits, |
@@ -189,6 +194,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_; |