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

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

Issue 18045007: Show more different NaCl loading errors. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 7 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/sel_ldr_launcher_chrome.cc
===================================================================
--- ppapi/native_client/src/trusted/plugin/sel_ldr_launcher_chrome.cc (revision 211556)
+++ ppapi/native_client/src/trusted/plugin/sel_ldr_launcher_chrome.cc (working copy)
@@ -7,6 +7,8 @@
#include "native_client/src/trusted/plugin/nacl_entry_points.h"
+#include "ppapi/cpp/var.h"
+
LaunchNaClProcessFunc launch_nacl_process = NULL;
namespace plugin {
@@ -22,9 +24,12 @@
bool uses_ppapi,
bool enable_ppapi_dev,
bool enable_dyncode_syscalls,
- bool enable_exception_handling) {
+ bool enable_exception_handling,
+ nacl::string* error_message) {
+ *error_message = "";
if (!launch_nacl_process)
return false;
+ PP_Var var_error_message;
// send a synchronous message to the browser process
if (launch_nacl_process(instance,
url,
@@ -33,7 +38,12 @@
PP_FromBool(enable_ppapi_dev),
PP_FromBool(enable_dyncode_syscalls),
PP_FromBool(enable_exception_handling),
- &channel_) != PP_NACL_OK) {
+ &channel_,
+ &var_error_message) != PP_NACL_OK) {
+ pp::Var var_error_message_cpp(pp::PASS_REF, var_error_message);
+ if (var_error_message_cpp.is_string()) {
+ *error_message = var_error_message_cpp.AsString();
+ }
return false;
}
return true;

Powered by Google App Engine
This is Rietveld 408576698