| 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 f4c63a2fbbcf3ecbbb8e878f20f8996d65f2afd8..055e5717f8ee3fcf27f3a67e3ae53958fb565bb7 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
|
| @@ -15,37 +15,4 @@ bool SelLdrLauncherChrome::Start(const char* url) {
|
| return false;
|
| }
|
|
|
| -void SelLdrLauncherChrome::Start(
|
| - PP_Instance instance,
|
| - bool main_service_runtime,
|
| - const char* url,
|
| - const PP_NaClFileInfo* file_info,
|
| - bool uses_irt,
|
| - bool uses_ppapi,
|
| - bool uses_nonsfi_mode,
|
| - bool enable_ppapi_dev,
|
| - bool enable_dyncode_syscalls,
|
| - bool enable_exception_handling,
|
| - bool enable_crash_throttling,
|
| - pp::CompletionCallback callback) {
|
| - if (!GetNaClInterface()) {
|
| - pp::Module::Get()->core()->CallOnMainThread(0, callback, PP_ERROR_FAILED);
|
| - return;
|
| - }
|
| - GetNaClInterface()->LaunchSelLdr(
|
| - instance,
|
| - PP_FromBool(main_service_runtime),
|
| - url,
|
| - file_info,
|
| - PP_FromBool(uses_irt),
|
| - PP_FromBool(uses_ppapi),
|
| - PP_FromBool(uses_nonsfi_mode),
|
| - PP_FromBool(enable_ppapi_dev),
|
| - PP_FromBool(enable_dyncode_syscalls),
|
| - PP_FromBool(enable_exception_handling),
|
| - PP_FromBool(enable_crash_throttling),
|
| - &channel_,
|
| - callback.pp_completion_callback());
|
| -}
|
| -
|
| } // namespace plugin
|
|
|