| 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..dbafee7aa3b34934548bae6f19fff74f11bf6ddb 100644
|
| --- a/ppapi/native_client/src/trusted/plugin/service_runtime.h
|
| +++ b/ppapi/native_client/src/trusted/plugin/service_runtime.h
|
| @@ -45,14 +45,12 @@ struct SelLdrStartParams {
|
| SelLdrStartParams(const nacl::string& url,
|
| bool uses_irt,
|
| bool uses_ppapi,
|
| - bool uses_nonsfi_mode,
|
| bool enable_dyncode_syscalls,
|
| bool enable_exception_handling,
|
| bool enable_crash_throttling)
|
| : url(url),
|
| 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) {
|
| @@ -60,7 +58,6 @@ struct SelLdrStartParams {
|
| nacl::string url;
|
| bool uses_irt;
|
| bool uses_ppapi;
|
| - bool uses_nonsfi_mode;
|
| bool enable_dev_interfaces;
|
| bool enable_dyncode_syscalls;
|
| bool enable_exception_handling;
|
|
|