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

Unified Diff: ppapi/native_client/src/trusted/plugin/service_runtime.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/service_runtime.h
diff --git a/ppapi/native_client/src/trusted/plugin/service_runtime.h b/ppapi/native_client/src/trusted/plugin/service_runtime.h
index a9341019f2d94ff45407f119ce7031b1db359508..e0024847efe8786a71babf8212302dc1367928d6 100644
--- a/ppapi/native_client/src/trusted/plugin/service_runtime.h
+++ b/ppapi/native_client/src/trusted/plugin/service_runtime.h
@@ -36,13 +36,18 @@ class ServiceRuntime;
struct SelLdrStartParams {
SelLdrStartParams(const std::string& url,
const PP_NaClFileInfo& file_info,
+ PP_NaClResourceFileHandle* resource_file_handles,
+ uint32_t resource_file_handles_len,
PP_NaClAppProcessType process_type)
: url(url),
file_info(file_info),
- process_type(process_type) {
- }
+ resource_file_handles(resource_file_handles),
+ resource_file_handles_len(resource_file_handles_len),
+ process_type(process_type) {}
std::string url;
PP_NaClFileInfo file_info;
+ PP_NaClResourceFileHandle* resource_file_handles;
+ uint32_t resource_file_handles_len;
PP_NaClAppProcessType process_type;
};

Powered by Google App Engine
This is Rietveld 408576698