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

Unified Diff: src/untrusted/irt/irt.h

Issue 7605029: Extend IRT with nacl_irt_resource_open interface (Closed) Base URL: svn://svn.chromium.org/native_client/trunk/src/native_client/
Patch Set: remove empty lines Created 9 years, 4 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: src/untrusted/irt/irt.h
===================================================================
--- src/untrusted/irt/irt.h (revision 6384)
+++ src/untrusted/irt/irt.h (working copy)
@@ -143,6 +143,18 @@
void (*ppapi_register_thread_creator)(const struct PP_ThreadFunctions *);
};
+#define NACL_IRT_PPAPIHOOK_v0_2 "nacl-irt-ppapihook-0.2"
+struct nacl_irt_ppapihook_0_2 {
+ int (*ppapi_start)(const struct PP_StartFunctions *);
+ void (*ppapi_register_thread_creator)(const struct PP_ThreadFunctions *);
+ void (*ppapi_pre_start)();
+};
+
+#define NACL_IRT_MANIFEST_OPEN_v0_0 "nacl-irt-manifest-0.0"
+struct nacl_irt_manifest_open {
+ int (*open_file_in_manifest)(const char* file);
+};
+
#if __cplusplus
}
#endif

Powered by Google App Engine
This is Rietveld 408576698