Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(164)

Unified Diff: ppapi/native_client/src/trusted/plugin/sel_ldr_launcher_chrome.cc

Issue 360743002: Pepper: SelLdrLauncherChrome cleanup. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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

Powered by Google App Engine
This is Rietveld 408576698