Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(51)

Side by Side Diff: chrome/common/crash_keys.cc

Issue 1815983003: Remove deprecated QTKit Video Capture Support (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix media_internals_test Created 4 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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 159 matching lines...) Expand 10 before | Expand all | Expand 10 after
312 } 311 }
313 312
314 ScopedPrinterInfo::~ScopedPrinterInfo() { 313 ScopedPrinterInfo::~ScopedPrinterInfo() {
315 for (size_t i = 0; i < kPrinterInfoCount; ++i) { 314 for (size_t i = 0; i < kPrinterInfoCount; ++i) {
316 std::string key = base::StringPrintf(kPrinterInfo, i + 1); 315 std::string key = base::StringPrintf(kPrinterInfo, i + 1);
317 base::debug::ClearCrashKey(key); 316 base::debug::ClearCrashKey(key);
318 } 317 }
319 } 318 }
320 319
321 } // namespace crash_keys 320 } // namespace crash_keys
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698