Index: ppapi/native_client/src/trusted/plugin/plugin.cc |
diff --git a/ppapi/native_client/src/trusted/plugin/plugin.cc b/ppapi/native_client/src/trusted/plugin/plugin.cc |
index 292382506179c49e7b5add95a20fb11005231d44..39e7bed2ef674d963ac5e995b20d72e8ab814190 100644 |
--- a/ppapi/native_client/src/trusted/plugin/plugin.cc |
+++ b/ppapi/native_client/src/trusted/plugin/plugin.cc |
@@ -385,6 +385,7 @@ bool Plugin::LoadNaClModule(nacl::DescWrapper* wrapper, |
} |
bool Plugin::LoadNaClModuleContinuationIntern(ErrorInfo* error_info) { |
+#if 0 |
if (!main_subprocess_.StartSrpcServices()) { |
// The NaCl process probably crashed. On Linux, a crash causes this error, |
// while on other platforms, the error is detected below, when we attempt to |
@@ -396,6 +397,7 @@ bool Plugin::LoadNaClModuleContinuationIntern(ErrorInfo* error_info) { |
"could not initialize module."); |
return false; |
} |
+#endif |
PP_ExternalPluginResult ipc_result = |
nacl_interface_->StartPpapiProxy(pp_instance()); |
if (ipc_result == PP_EXTERNAL_PLUGIN_OK) { |