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

Unified Diff: mojo/shell/app_child_process.cc

Issue 206713004: Report PPAPI plugin load error code to UMA. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix Android. Created 6 years, 9 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: mojo/shell/app_child_process.cc
diff --git a/mojo/shell/app_child_process.cc b/mojo/shell/app_child_process.cc
index 732f89cc95839ffca48fea9bebc43cd8f8fb5749..74e86135deb7cb0d900165224eaa92161936f625 100644
--- a/mojo/shell/app_child_process.cc
+++ b/mojo/shell/app_child_process.cc
@@ -233,7 +233,7 @@ class AppChildControllerImpl : public mojo_shell::AppChildController {
base::Bind(base::IgnoreResult(&base::DeleteFile), app_path, false));
do {
- std::string load_error;
+ base::NativeLibraryLoadError load_error;
base::ScopedNativeLibrary app_library(
base::LoadNativeLibrary(app_path, &load_error));
if (!app_library.is_valid()) {

Powered by Google App Engine
This is Rietveld 408576698