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

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: Rebased Created 4 years, 8 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
« no previous file with comments | « chrome/browser/media/webrtc_webcam_browsertest.cc ('k') | content/browser/BUILD.gn » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 163 matching lines...) Expand 10 before | Expand all | Expand 10 after
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
OLDNEW
« no previous file with comments | « chrome/browser/media/webrtc_webcam_browsertest.cc ('k') | content/browser/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698