| 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 121 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 132 { mac::kNSException, kMediumSize }, | 132 { mac::kNSException, kMediumSize }, |
| 133 { mac::kNSExceptionTrace, kMediumSize }, | 133 { mac::kNSExceptionTrace, kMediumSize }, |
| 134 { mac::kSendAction, kMediumSize }, | 134 { mac::kSendAction, kMediumSize }, |
| 135 { mac::kZombie, kMediumSize }, | 135 { mac::kZombie, kMediumSize }, |
| 136 { mac::kZombieTrace, kMediumSize }, | 136 { mac::kZombieTrace, kMediumSize }, |
| 137 // content/: | 137 // content/: |
| 138 { "channel_error_bt", kMediumSize }, | 138 { "channel_error_bt", kMediumSize }, |
| 139 { "remove_route_bt", kMediumSize }, | 139 { "remove_route_bt", kMediumSize }, |
| 140 { "rwhvm_window", kMediumSize }, | 140 { "rwhvm_window", kMediumSize }, |
| 141 // media/: | 141 // media/: |
| 142 { "VideoCaptureDeviceQTKit", kSmallSize }, | |
| 143 #endif | 142 #endif |
| 144 #if BUILDFLAG(ENABLE_KASKO) | 143 #if BUILDFLAG(ENABLE_KASKO) |
| 145 { kKaskoGuid, kSmallSize }, | 144 { kKaskoGuid, kSmallSize }, |
| 146 { kKaskoEquivalentGuid, kSmallSize }, | 145 { kKaskoEquivalentGuid, kSmallSize }, |
| 147 #endif | 146 #endif |
| 148 { kBug464926CrashKey, kSmallSize }, | 147 { kBug464926CrashKey, kSmallSize }, |
| 149 { kViewCount, kSmallSize }, | 148 { kViewCount, kSmallSize }, |
| 150 | 149 |
| 151 // media/: | 150 // media/: |
| 152 #if defined(OS_WIN) | 151 #if defined(OS_WIN) |
| (...skipping 163 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 316 } | 315 } |
| 317 | 316 |
| 318 ScopedPrinterInfo::~ScopedPrinterInfo() { | 317 ScopedPrinterInfo::~ScopedPrinterInfo() { |
| 319 for (size_t i = 0; i < kPrinterInfoCount; ++i) { | 318 for (size_t i = 0; i < kPrinterInfoCount; ++i) { |
| 320 std::string key = base::StringPrintf(kPrinterInfo, i + 1); | 319 std::string key = base::StringPrintf(kPrinterInfo, i + 1); |
| 321 base::debug::ClearCrashKey(key); | 320 base::debug::ClearCrashKey(key); |
| 322 } | 321 } |
| 323 } | 322 } |
| 324 | 323 |
| 325 } // namespace crash_keys | 324 } // namespace crash_keys |
| OLD | NEW |