diff options
author | nirnimesh@chromium.org <nirnimesh@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-11-05 05:28:21 +0000 |
---|---|---|
committer | nirnimesh@chromium.org <nirnimesh@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-11-05 05:28:21 +0000 |
commit | c38a0c74b4a29e6eecb99babf7c98045f05c1c56 (patch) | |
tree | b22d16943cdf64b5ccebb946f00283f3fcf57497 /chrome/common/chrome_switches.cc | |
parent | 5f2cee8b6e2760e626646651556a808a4cd5a6b1 (diff) | |
download | chromium_src-c38a0c74b4a29e6eecb99babf7c98045f05c1c56.zip chromium_src-c38a0c74b4a29e6eecb99babf7c98045f05c1c56.tar.gz chromium_src-c38a0c74b4a29e6eecb99babf7c98045f05c1c56.tar.bz2 |
Always enable Breakpad if using --enable-crash-reporter flag
This is so that when unattended, typically the first run dialog is not shown
(when using automation proxy) and the user does not get a chance to consent
to sending stats. This gives an opportunity to force enable breakpad.
BUG=24960,25271
TEST=Breakpad should be initialized if --enable-crash-reporter flag has been specified
Review URL: http://codereview.chromium.org/282011
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@31074 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/common/chrome_switches.cc')
-rw-r--r-- | chrome/common/chrome_switches.cc | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/chrome/common/chrome_switches.cc b/chrome/common/chrome_switches.cc index c38bcfa..121feba 100644 --- a/chrome/common/chrome_switches.cc +++ b/chrome/common/chrome_switches.cc @@ -655,6 +655,8 @@ const char kAutoSSLClientAuth[] = "auto-ssl-client-auth"; // command lines on Linux and Mac. It tells the helper process to enable crash // dumping and reporting, because helpers cannot access the profile or other // files needed to make this decision. +// If passed to the browser, it'll be passed on to all the helper processes +// as well, thereby force-enabling the crash reporter. const char kEnableCrashReporter[] = "enable-crash-reporter"; // This switch is used during automated testing. |