| 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 d53d61216f1f11c0c63c940cd962a6cbb318920a..3c5e436086b858b151286bb3febc82e7a86a3fb6 100644
|
| --- a/ppapi/native_client/src/trusted/plugin/service_runtime.h
|
| +++ b/ppapi/native_client/src/trusted/plugin/service_runtime.h
|
| @@ -42,12 +42,14 @@ class ServiceRuntime;
|
| // creation templates aren't overwhelmed with too many parameters.
|
| struct SelLdrStartParams {
|
| SelLdrStartParams(const nacl::string& url,
|
| + const PP_NaClFileInfo& file_info,
|
| bool uses_irt,
|
| bool uses_ppapi,
|
| bool enable_dyncode_syscalls,
|
| bool enable_exception_handling,
|
| bool enable_crash_throttling)
|
| : url(url),
|
| + file_info(file_info),
|
| uses_irt(uses_irt),
|
| uses_ppapi(uses_ppapi),
|
| enable_dyncode_syscalls(enable_dyncode_syscalls),
|
| @@ -55,6 +57,7 @@ struct SelLdrStartParams {
|
| enable_crash_throttling(enable_crash_throttling) {
|
| }
|
| nacl::string url;
|
| + PP_NaClFileInfo file_info;
|
| bool uses_irt;
|
| bool uses_ppapi;
|
| bool enable_dev_interfaces;
|
|
|