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

Unified Diff: content/child/npapi/plugin_lib.cc

Issue 206713004: Report PPAPI plugin load error code to UMA. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Use std::string directly. 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: content/child/npapi/plugin_lib.cc
diff --git a/content/child/npapi/plugin_lib.cc b/content/child/npapi/plugin_lib.cc
index 8722d6379b7852427e83c53fe56d23b775dcc415..b969a87d2f6c7472bd9eada443ac57a45cde1b16 100644
--- a/content/child/npapi/plugin_lib.cc
+++ b/content/child/npapi/plugin_lib.cc
@@ -171,7 +171,7 @@ bool PluginLib::Load() {
bool rv = false;
base::NativeLibrary library = 0;
- std::string error;
+ base::NativeLibraryLoadError error = 0;
#if defined(OS_WIN)
// This is to work around a bug in the Real player recorder plugin which

Powered by Google App Engine
This is Rietveld 408576698