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

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

Issue 424893003: Pepper: Move NaCl fatal logging to Chrome IPC. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix for dmichael Created 6 years, 5 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/plugin.cc
diff --git a/ppapi/native_client/src/trusted/plugin/plugin.cc b/ppapi/native_client/src/trusted/plugin/plugin.cc
index da58f43c464160f43cf69e767bbc2a18aba22b85..3a94c212674a326881fa60db820d359921f87fe6 100644
--- a/ppapi/native_client/src/trusted/plugin/plugin.cc
+++ b/ppapi/native_client/src/trusted/plugin/plugin.cc
@@ -362,9 +362,7 @@ void Plugin::NexeDidCrash(int32_t pp_error) {
PLUGIN_PRINTF(("Plugin::NexeDidCrash (pp_error=%" NACL_PRId32 ")\n",
pp_error));
- std::string crash_log =
- main_subprocess_.service_runtime()->GetCrashLogOutput();
- nacl_interface_->NexeDidCrash(pp_instance(), crash_log.c_str());
+ nacl_interface_->NexeDidCrash(pp_instance());
}
void Plugin::BitcodeDidTranslate(int32_t pp_error) {

Powered by Google App Engine
This is Rietveld 408576698