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

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: code review Created 6 years, 2 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/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..2fb5360d67aba794a6e0a960a061bd7272ffd641 100644
--- a/ppapi/native_client/src/trusted/plugin/service_runtime.h
+++ b/ppapi/native_client/src/trusted/plugin/service_runtime.h
@@ -36,13 +36,15 @@ class ServiceRuntime;
struct SelLdrStartParams {
SelLdrStartParams(const std::string& url,
const PP_NaClFileInfo& file_info,
+ PP_NaClResourceFileHandle* resource_file_handles,
PP_NaClAppProcessType process_type)
: url(url),
file_info(file_info),
- process_type(process_type) {
- }
+ resource_file_handles(resource_file_handles),
+ process_type(process_type) {}
std::string url;
PP_NaClFileInfo file_info;
+ PP_NaClResourceFileHandle* resource_file_handles;
PP_NaClAppProcessType process_type;
};

Powered by Google App Engine
This is Rietveld 408576698