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

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

Issue 2629743003: Remove all blimp engine code (Closed)
Patch Set: Created 3 years, 11 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 88 matching lines...) Expand 10 before | Expand all | Expand 10 after
99 99
100 const char kViewCount[] = "view-count"; 100 const char kViewCount[] = "view-count";
101 101
102 const char kZeroEncodeDetails[] = "zero-encode-details"; 102 const char kZeroEncodeDetails[] = "zero-encode-details";
103 103
104 size_t RegisterChromeCrashKeys() { 104 size_t RegisterChromeCrashKeys() {
105 // The following keys may be chunked by the underlying crash logging system, 105 // The following keys may be chunked by the underlying crash logging system,
106 // but ultimately constitute a single key-value pair. 106 // but ultimately constitute a single key-value pair.
107 // 107 //
108 // If you're adding keys here, please also add them to the following lists: 108 // If you're adding keys here, please also add them to the following lists:
109 // 1. //blimp/engine/app/blimp_engine_crash_keys.cc and 109 // //chrome/app/chrome_crash_reporter_client_win.cc::
Nico 2017/01/13 19:28:07 nit: double // looks a bit strange
nyquist 2017/01/13 19:39:44 Done. Made more prettier.
110 // 2. //chrome/app/chrome_crash_reporter_client_win.cc:: 110 // RegisterCrashKeysHelper().
111 // RegisterCrashKeysHelper().
112 base::debug::CrashKey fixed_keys[] = { 111 base::debug::CrashKey fixed_keys[] = {
113 #if defined(OS_MACOSX) || defined(OS_WIN) 112 #if defined(OS_MACOSX) || defined(OS_WIN)
114 { kMetricsClientId, kSmallSize }, 113 { kMetricsClientId, kSmallSize },
115 #else 114 #else
116 { kClientId, kSmallSize }, 115 { kClientId, kSmallSize },
117 #endif 116 #endif
118 { kChannel, kSmallSize }, 117 { kChannel, kSmallSize },
119 { kActiveURL, kLargeSize }, 118 { kActiveURL, kLargeSize },
120 { kNumVariations, kSmallSize }, 119 { kNumVariations, kSmallSize },
121 { kVariations, kLargeSize }, 120 { kVariations, kLargeSize },
(...skipping 257 matching lines...) Expand 10 before | Expand all | Expand 10 after
379 } 378 }
380 379
381 ScopedPrinterInfo::~ScopedPrinterInfo() { 380 ScopedPrinterInfo::~ScopedPrinterInfo() {
382 for (size_t i = 0; i < kPrinterInfoCount; ++i) { 381 for (size_t i = 0; i < kPrinterInfoCount; ++i) {
383 std::string key = base::StringPrintf(kPrinterInfo, i + 1); 382 std::string key = base::StringPrintf(kPrinterInfo, i + 1);
384 base::debug::ClearCrashKey(key); 383 base::debug::ClearCrashKey(key);
385 } 384 }
386 } 385 }
387 386
388 } // namespace crash_keys 387 } // namespace crash_keys
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698