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..9df2f589bb7a741b2c440f3e8573a99b9770d61c 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; |
#if defined(OS_WIN) |
// This is to work around a bug in the Real player recorder plugin which |
@@ -193,7 +193,7 @@ bool PluginLib::Load() { |
if (!library) { |
LOG_IF(ERROR, PluginList::DebugPluginLoading()) |
<< "Couldn't load plugin " << web_plugin_info_.path.value() << " " |
- << error; |
+ << error.ToString(); |
return rv; |
} |