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