Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(303)

Unified Diff: components/nacl/common/nacl_host_messages.h

Issue 356923004: Enable mmap and identity-based validation caching on pnacl-{llc,ld}.nexe (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fixup Created 6 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: components/nacl/common/nacl_host_messages.h
diff --git a/components/nacl/common/nacl_host_messages.h b/components/nacl/common/nacl_host_messages.h
index 55254540e9ae824ddbab78def104a80aea1a6a3c..a998f371160c77a5ad8641586f6db38eb3544241 100644
--- a/components/nacl/common/nacl_host_messages.h
+++ b/components/nacl/common/nacl_host_messages.h
@@ -62,9 +62,12 @@ IPC_SYNC_MESSAGE_CONTROL1_2(NaClHostMsg_LaunchNaCl,
// A renderer sends this to the browser process when it wants to
// open a file for from the Pnacl component directory.
-IPC_SYNC_MESSAGE_CONTROL1_1(NaClHostMsg_GetReadonlyPnaclFD,
+IPC_SYNC_MESSAGE_CONTROL2_3(NaClHostMsg_GetReadonlyPnaclFD,
std::string /* name of requested PNaCl file */,
- IPC::PlatformFileForTransit /* output file */)
+ bool /* is_executable */,
+ IPC::PlatformFileForTransit /* output file */,
+ uint64_t /* file_token_lo */,
+ uint64_t /* file_token_hi */)
// A renderer sends this to the browser process when it wants to
// create a temporary file.

Powered by Google App Engine
This is Rietveld 408576698