summaryrefslogtreecommitdiffstats
path: root/webkit
diff options
context:
space:
mode:
authorxiyuan@chromium.org <xiyuan@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-02-28 23:45:45 +0000
committerxiyuan@chromium.org <xiyuan@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-02-28 23:45:45 +0000
commit0e3947d01bc982d985a4b650b46237e8b0f7b33c (patch)
treedccb306a7882e811fece0d57fd9247cd2f7a4e09 /webkit
parent609a05f2dbc3803fd78dd982c9e8dbfe35f5833d (diff)
downloadchromium_src-0e3947d01bc982d985a4b650b46237e8b0f7b33c.zip
chromium_src-0e3947d01bc982d985a4b650b46237e8b0f7b33c.tar.gz
chromium_src-0e3947d01bc982d985a4b650b46237e8b0f7b33c.tar.bz2
chromeos: Add logging to pepper plugin loading.
So that we could see whether those plugins would be related with the VMTests timed out. BUG=chromium-os:26646 TEST=none. Review URL: http://codereview.chromium.org/9477021 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@124053 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'webkit')
-rw-r--r--webkit/plugins/ppapi/plugin_module.cc6
1 files changed, 6 insertions, 0 deletions
diff --git a/webkit/plugins/ppapi/plugin_module.cc b/webkit/plugins/ppapi/plugin_module.cc
index 746e515..68d92e4 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;