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

Unified Diff: content/common/pepper_plugin_registry.cc

Issue 9477021: chromeos: Add logging to pepper plugin loading. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 10 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
« no previous file with comments | « no previous file | webkit/plugins/ppapi/plugin_module.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/common/pepper_plugin_registry.cc
diff --git a/content/common/pepper_plugin_registry.cc b/content/common/pepper_plugin_registry.cc
index be7529d7f98dd09d169faa33a30e12f56348d53c..7ab10bdf820407cdd28a03bd580501ec95b47769 100644
--- a/content/common/pepper_plugin_registry.cc
+++ b/content/common/pepper_plugin_registry.cc
@@ -137,6 +137,11 @@ void PepperPluginRegistry::PreloadModules() {
std::string error;
base::NativeLibrary library = base::LoadNativeLibrary(plugins[i].path,
&error);
+#if defined(OS_CHROMEOS)
+ // TODO(xiyuan): Remove this once crosbug.com/26646 is resolved.
+ LOG(ERROR) << "#### PepperPluginRegistry::PreloadModules"
+ << ", path=" << plugins[i].path.value();
+#endif // defined (OS_CHROMEOS)
DLOG_IF(WARNING, !library) << "Unable to load plugin "
<< plugins[i].path.value() << " "
<< error;
« no previous file with comments | « no previous file | webkit/plugins/ppapi/plugin_module.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698