| 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_;
|
|
|