Chromium Code Reviews| 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 650aa3d59bcab17053ec45d56158d68fbd9e18f4..f62290e2b36002fce57573ede5a177e5f6a90fb5 100644 |
| --- a/ppapi/native_client/src/trusted/plugin/service_runtime.h |
| +++ b/ppapi/native_client/src/trusted/plugin/service_runtime.h |
| @@ -43,24 +43,24 @@ 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 uses_nonsfi_mode, |
|
Mark Seaborn
2014/06/17 00:50:31
Could you possibly do this removal in a separate c
hidehiko
2014/06/18 08:43:32
Done.
|
| 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), |
| - uses_nonsfi_mode(uses_nonsfi_mode), |
| enable_dyncode_syscalls(enable_dyncode_syscalls), |
| enable_exception_handling(enable_exception_handling), |
| enable_crash_throttling(enable_crash_throttling) { |
| } |
| nacl::string url; |
| + PP_NaClFileInfo file_info; |
| bool uses_irt; |
| bool uses_ppapi; |
| - bool uses_nonsfi_mode; |
| bool enable_dev_interfaces; |
| bool enable_dyncode_syscalls; |
| bool enable_exception_handling; |