| Index: ppapi/native_client/src/trusted/plugin/sel_ldr_launcher_chrome.cc
|
| diff --git a/ppapi/native_client/src/trusted/plugin/sel_ldr_launcher_chrome.cc b/ppapi/native_client/src/trusted/plugin/sel_ldr_launcher_chrome.cc
|
| index 7fcfa916e40ee31b6875504118691477dbccbd45..169702f1fd3a29638b7c3f7e47b80f3a6d664a4a 100644
|
| --- a/ppapi/native_client/src/trusted/plugin/sel_ldr_launcher_chrome.cc
|
| +++ b/ppapi/native_client/src/trusted/plugin/sel_ldr_launcher_chrome.cc
|
| @@ -25,6 +25,7 @@ void SelLdrLauncherChrome::Start(PP_Instance instance,
|
| bool enable_dyncode_syscalls,
|
| bool enable_exception_handling,
|
| bool enable_crash_throttling,
|
| + bool enable_nonsfi,
|
| PP_Var* error_message,
|
| pp::CompletionCallback callback) {
|
| if (!launch_nacl_process) {
|
| @@ -39,6 +40,7 @@ void SelLdrLauncherChrome::Start(PP_Instance instance,
|
| PP_FromBool(enable_dyncode_syscalls),
|
| PP_FromBool(enable_exception_handling),
|
| PP_FromBool(enable_crash_throttling),
|
| + PP_FromBool(enable_nonsfi),
|
| &channel_,
|
| error_message,
|
| callback.pp_completion_callback());
|
|
|