diff options
author | thestig@chromium.org <thestig@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-12-04 23:51:33 +0000 |
---|---|---|
committer | thestig@chromium.org <thestig@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-12-04 23:51:33 +0000 |
commit | ac77fbc08a0bedbadb29372a8fe1fe2fc4fbdbb6 (patch) | |
tree | bf658fd019d8e1bd7d85fcf266df298d730fca7e /chrome/browser/crash_handler_host_linux.cc | |
parent | 6b050c31bd9ac75c9b31f7a70e07018af739a5ce (diff) | |
download | chromium_src-ac77fbc08a0bedbadb29372a8fe1fe2fc4fbdbb6.zip chromium_src-ac77fbc08a0bedbadb29372a8fe1fe2fc4fbdbb6.tar.gz chromium_src-ac77fbc08a0bedbadb29372a8fe1fe2fc4fbdbb6.tar.bz2 |
Linux: Record the list of plugins loaded in browser process crash reports.
BUG=none
TEST=none
Review URL: http://codereview.chromium.org/459015
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@33888 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/crash_handler_host_linux.cc')
-rw-r--r-- | chrome/browser/crash_handler_host_linux.cc | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/chrome/browser/crash_handler_host_linux.cc b/chrome/browser/crash_handler_host_linux.cc index dc803ec..b779a5f9 100644 --- a/chrome/browser/crash_handler_host_linux.cc +++ b/chrome/browser/crash_handler_host_linux.cc @@ -233,6 +233,8 @@ void CrashHandlerHostLinux::OnFileCanReadWithoutBlocking(int fd) { info.guid_length = strlen(guid); info.distro = distro; info.distro_length = strlen(distro); + info.plugin_list = ""; + info.plugin_list_length = 0; info.upload = upload; HandleCrashDump(info); } |