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

Unified Diff: ppapi/native_client/src/trusted/plugin/plugin.h

Issue 649603004: Non-SFI NaCl: Batch-open resource files (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Remove ipc/ and mojo/ changes following Mark's suggestion Created 6 years 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/native_client/src/trusted/plugin/plugin.h
diff --git a/ppapi/native_client/src/trusted/plugin/plugin.h b/ppapi/native_client/src/trusted/plugin/plugin.h
index 1fe082a643642e9679be0c77efc7875dd70b932a..6a9c8edf017fad02f09d2bea3c47defbac775f77 100644
--- a/ppapi/native_client/src/trusted/plugin/plugin.h
+++ b/ppapi/native_client/src/trusted/plugin/plugin.h
@@ -84,6 +84,8 @@ class Plugin : public pp::Instance {
// nacl_ready_state to be done, and let the normal crash detection
// mechanism(s) take over.
void LoadNaClModule(PP_NaClFileInfo file_info,
+ PP_NaClResourceFileHandle* resource_file_handles,
+ uint32_t resource_file_handles_len,
bool uses_nonsfi_mode,
PP_NaClAppProcessType process_type,
const pp::CompletionCallback& init_done_cb);
@@ -192,6 +194,8 @@ class Plugin : public pp::Instance {
int exit_status_;
PP_NaClFileInfo nexe_file_info_;
+ PP_NaClResourceFileHandle* resource_file_handles_;
+ uint32_t resource_file_handles_len_;
const PPB_NaCl_Private* nacl_interface_;
pp::UMAPrivate uma_interface_;

Powered by Google App Engine
This is Rietveld 408576698