Chromium Code Reviews| Index: chrome/installer/setup/installer_crash_reporting.cc |
| diff --git a/chrome/installer/setup/installer_crash_reporting.cc b/chrome/installer/setup/installer_crash_reporting.cc |
| index fcecd773a729cf49d90e06bd4ba7facb0d938854..3bbedb8e8b62ee68096a43c7598072983ece2b5f 100644 |
| --- a/chrome/installer/setup/installer_crash_reporting.cc |
| +++ b/chrome/installer/setup/installer_crash_reporting.cc |
| @@ -121,7 +121,11 @@ void ConfigureCrashReporting(const InstallerState& installer_state) { |
| size_t RegisterCrashKeys() { |
| const base::debug::CrashKey kFixedKeys[] = { |
| +#if defined(OS_MACOSX) || defined(OS_WIN) |
|
grt (UTC plus 2)
2016/02/04 15:36:42
this file is exclusively OS_WIN, so there's no nee
bcwhite
2016/02/04 21:51:13
This whole file will not be in the final submit.
grt (UTC plus 2)
2016/02/08 18:09:18
Gotcha. That other CL landed, so you should be abl
bcwhite
2016/02/09 21:08:45
Done.
|
| + { crash_keys::kMetricsClientId, crash_keys::kSmallSize }, |
| +#else |
| { crash_keys::kClientId, crash_keys::kSmallSize }, |
| +#endif |
| { kCurrentVersion, crash_keys::kSmallSize }, |
| { kDistributionType, crash_keys::kSmallSize }, |
| { kIsMultiInstall, crash_keys::kSmallSize }, |