| OLD | NEW |
| 1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "chrome/common/crash_keys.h" | 5 #include "chrome/common/crash_keys.h" |
| 6 | 6 |
| 7 #include "base/base_switches.h" | 7 #include "base/base_switches.h" |
| 8 #include "base/command_line.h" | 8 #include "base/command_line.h" |
| 9 #include "base/format_macros.h" | 9 #include "base/format_macros.h" |
| 10 #include "base/logging.h" | 10 #include "base/logging.h" |
| (...skipping 200 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 211 // Temporary for https://crbug.com/668633. | 211 // Temporary for https://crbug.com/668633. |
| 212 {"swdh_set_hosted_version_worker_pid", crash_keys::kSmallSize}, | 212 {"swdh_set_hosted_version_worker_pid", crash_keys::kSmallSize}, |
| 213 {"swdh_set_hosted_version_host_pid", crash_keys::kSmallSize}, | 213 {"swdh_set_hosted_version_host_pid", crash_keys::kSmallSize}, |
| 214 {"swdh_set_hosted_version_is_new_process", crash_keys::kSmallSize}, | 214 {"swdh_set_hosted_version_is_new_process", crash_keys::kSmallSize}, |
| 215 {"swdh_set_hosted_version_restart_count", crash_keys::kSmallSize}, | 215 {"swdh_set_hosted_version_restart_count", crash_keys::kSmallSize}, |
| 216 | 216 |
| 217 // Temporary for https://crbug.com/697745. | 217 // Temporary for https://crbug.com/697745. |
| 218 {"engine_params", crash_keys::kMediumSize}, | 218 {"engine_params", crash_keys::kMediumSize}, |
| 219 {"engine1_params", crash_keys::kMediumSize}, | 219 {"engine1_params", crash_keys::kMediumSize}, |
| 220 {"engine2_params", crash_keys::kMediumSize}, | 220 {"engine2_params", crash_keys::kMediumSize}, |
| 221 | |
| 222 // Temporary for http://crbug.com/703649. | |
| 223 {"field_trial_shmem_create_error", crash_keys::kSmallSize}, | |
| 224 {"field_trial_shmem_map_error", crash_keys::kSmallSize}, | |
| 225 }; | 221 }; |
| 226 | 222 |
| 227 // This dynamic set of keys is used for sets of key value pairs when gathering | 223 // This dynamic set of keys is used for sets of key value pairs when gathering |
| 228 // a collection of data, like command line switches or extension IDs. | 224 // a collection of data, like command line switches or extension IDs. |
| 229 std::vector<base::debug::CrashKey> keys( | 225 std::vector<base::debug::CrashKey> keys( |
| 230 fixed_keys, fixed_keys + arraysize(fixed_keys)); | 226 fixed_keys, fixed_keys + arraysize(fixed_keys)); |
| 231 | 227 |
| 232 crash_keys::GetCrashKeysForCommandLineSwitches(&keys); | 228 crash_keys::GetCrashKeysForCommandLineSwitches(&keys); |
| 233 | 229 |
| 234 // Register the extension IDs. | 230 // Register the extension IDs. |
| (...skipping 116 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 351 } | 347 } |
| 352 | 348 |
| 353 ScopedPrinterInfo::~ScopedPrinterInfo() { | 349 ScopedPrinterInfo::~ScopedPrinterInfo() { |
| 354 for (size_t i = 0; i < kPrinterInfoCount; ++i) { | 350 for (size_t i = 0; i < kPrinterInfoCount; ++i) { |
| 355 std::string key = base::StringPrintf(kPrinterInfo, i + 1); | 351 std::string key = base::StringPrintf(kPrinterInfo, i + 1); |
| 356 base::debug::ClearCrashKey(key); | 352 base::debug::ClearCrashKey(key); |
| 357 } | 353 } |
| 358 } | 354 } |
| 359 | 355 |
| 360 } // namespace crash_keys | 356 } // namespace crash_keys |
| OLD | NEW |