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

Unified Diff: ppapi/api/private/ppb_nacl_private.idl

Issue 14750007: NaCl: enable meta-based validation for shared libraries. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 7 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: ppapi/api/private/ppb_nacl_private.idl
diff --git a/ppapi/api/private/ppb_nacl_private.idl b/ppapi/api/private/ppb_nacl_private.idl
index b1f47ce76f5f94a64de6044bc4281bc091b8ab17..049387a138f7f0e84626b01baa842194c21c7eae 100644
--- a/ppapi/api/private/ppb_nacl_private.idl
+++ b/ppapi/api/private/ppb_nacl_private.idl
@@ -34,12 +34,6 @@ enum PP_NaClError {
PP_NACL_MANIFEST_MISSING_ARCH = 0
};
-struct PP_NaClExecutableMetadata {
- /** File path of NaCl executable. This is created by the OpenNaClExecutableFd
- * function. It is the caller's responsiblity to release it. */
- PP_Var file_path;
-};
-
/* PPB_NaCl_Private */
interface PPB_NaCl_Private {
/* Launches NaCl's sel_ldr process. Returns PP_NACL_OK on success and
@@ -129,5 +123,5 @@ interface PPB_NaCl_Private {
*/
PP_FileHandle OpenNaClExecutable([in] PP_Instance instance,
[in] str_t file_url,
- [out] PP_NaClExecutableMetadata metadata);
+ [out] uint64_t nonce);
};

Powered by Google App Engine
This is Rietveld 408576698