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

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

Issue 356053004: Pepper: Remove PPP_ManifestService. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix declaration order 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 4508fb9432af81fe4a88065bab7a78af96c736bc..f4c63a2fbbcf3ecbbb8e878f20f8996d65f2afd8 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
@@ -27,8 +27,6 @@ void SelLdrLauncherChrome::Start(
bool enable_dyncode_syscalls,
bool enable_exception_handling,
bool enable_crash_throttling,
- const PPP_ManifestService* manifest_service_interface,
- void* manifest_service_user_data,
pp::CompletionCallback callback) {
if (!GetNaClInterface()) {
pp::Module::Get()->core()->CallOnMainThread(0, callback, PP_ERROR_FAILED);
@@ -46,8 +44,6 @@ void SelLdrLauncherChrome::Start(
PP_FromBool(enable_dyncode_syscalls),
PP_FromBool(enable_exception_handling),
PP_FromBool(enable_crash_throttling),
- manifest_service_interface,
- manifest_service_user_data,
&channel_,
callback.pp_completion_callback());
}

Powered by Google App Engine
This is Rietveld 408576698