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

Unified Diff: webkit/plugins/ppapi/plugin_module.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 | « content/common/pepper_plugin_registry.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webkit/plugins/ppapi/plugin_module.cc
diff --git a/webkit/plugins/ppapi/plugin_module.cc b/webkit/plugins/ppapi/plugin_module.cc
index 746e515d3746afd9d9dd34fe2ddfaed9ac1573bf..68d92e4ec3c7135e93fc5879792d119a728a8242 100644
--- a/webkit/plugins/ppapi/plugin_module.cc
+++ b/webkit/plugins/ppapi/plugin_module.cc
@@ -444,6 +444,12 @@ PluginModule::PluginModule(const std::string& name,
name_(name),
path_(path),
reserve_instance_id_(NULL) {
+#if defined(OS_CHROMEOS)
+ // TODO(xiyuan): Remove this once crosbug.com/26646 is resolved.
+ LOG(ERROR) << "#### Create ppapi::PluginModule::PluginModule"
+ << ", name=" << name
+ << ", path=" << path.value();
+#endif // defined (OS_CHROMEOS)
// Ensure the globals object is created.
if (!host_globals)
host_globals = new HostGlobals;
« no previous file with comments | « content/common/pepper_plugin_registry.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698