diff options
author | eroman@chromium.org <eroman@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-09-14 01:36:11 +0000 |
---|---|---|
committer | eroman@chromium.org <eroman@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-09-14 01:36:11 +0000 |
commit | 783f06f30e8f4e9e6635d5e0ea49b258e8274cc0 (patch) | |
tree | 7fdc3cce535b96377edf93dff43d05f384110c0e /chrome/common/child_process_logging_mac.mm | |
parent | 3227bd548c98f90ecabfcd4e3ccc3785ee9409d8 (diff) | |
download | chromium_src-783f06f30e8f4e9e6635d5e0ea49b258e8274cc0.zip chromium_src-783f06f30e8f4e9e6635d5e0ea49b258e8274cc0.tar.gz chromium_src-783f06f30e8f4e9e6635d5e0ea49b258e8274cc0.tar.bz2 |
[Windows] Include the about:flags experiments in crash reports.
* Increases the number of command line switches included in dumps from 2 to 15.
* Saves the command line flags for all process types (before it was just for browser).
* Includes the "fake" command line flags that were added by about:flags experiments.
This change will make it possible to cluster crashes with enabled experiments from our server-side analysis.
BUG=60992
Review URL: http://codereview.chromium.org/7866033
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@101009 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/common/child_process_logging_mac.mm')
-rw-r--r-- | chrome/common/child_process_logging_mac.mm | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/chrome/common/child_process_logging_mac.mm b/chrome/common/child_process_logging_mac.mm index 70ee2a7..abc7c00 100644 --- a/chrome/common/child_process_logging_mac.mm +++ b/chrome/common/child_process_logging_mac.mm @@ -173,4 +173,9 @@ void SetNumberOfViews(int number_of_views) { SetNumberOfViewsImpl(number_of_views, SetCrashKeyValue); } +void SetCommandLine(const CommandLine*) { + // TODO: http://crbug.com/60991 + NOTIMPLEMENTED(); +} + } // namespace child_process_logging |