Index: content/zygote/zygote_main_linux.cc |
diff --git a/content/zygote/zygote_main_linux.cc b/content/zygote/zygote_main_linux.cc |
index f6c32f92e000d0ecb0b137d6775bdf6daafbfae1..5dc09fa42aa005229f5afd29b52a945e240fa6c7 100644 |
--- a/content/zygote/zygote_main_linux.cc |
+++ b/content/zygote/zygote_main_linux.cc |
@@ -292,12 +292,12 @@ void PreloadPepperPlugins() { |
ComputePepperPluginList(&plugins); |
for (size_t i = 0; i < plugins.size(); ++i) { |
if (!plugins[i].is_internal && plugins[i].is_sandboxed) { |
- std::string error; |
+ base::NativeLibraryLoadError error; |
base::NativeLibrary library = base::LoadNativeLibrary(plugins[i].path, |
&error); |
VLOG_IF(1, !library) << "Unable to load plugin " |
<< plugins[i].path.value() << " " |
- << error; |
+ << error.ToString(); |
(void)library; // Prevent release-mode warning. |
} |