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

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

Issue 2572573003: Remove old diagnostic crash reports. (Closed)
Patch Set: Restore RenderViewHostImpl dump Created 3 years, 7 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/app/chrome_crash_reporter_client_win.cc ('k') | chromecast/crash/cast_crash_keys.cc » ('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 171 matching lines...) Expand 10 before | Expand all | Expand 10 after
182 {kZeroEncodeDetails, kSmallSize}, 182 {kZeroEncodeDetails, kSmallSize},
183 183
184 // gin/: 184 // gin/:
185 {"v8-ignition", kSmallSize}, 185 {"v8-ignition", kSmallSize},
186 186
187 // sandbox/: 187 // sandbox/:
188 #if defined(OS_LINUX) 188 #if defined(OS_LINUX)
189 {"seccomp-sigsys", kMediumSize}, 189 {"seccomp-sigsys", kMediumSize},
190 #endif 190 #endif
191 191
192 // Temporary for http://crbug.com/575245.
193 {"swapout_frame_id", kSmallSize},
194 {"swapout_proxy_id", kSmallSize},
195 {"swapout_view_id", kSmallSize},
196 {"commit_frame_id", kSmallSize},
197 {"commit_proxy_id", kSmallSize},
198 {"commit_view_id", kSmallSize},
199 {"commit_main_render_frame_id", kSmallSize},
200 {"newproxy_proxy_id", kSmallSize},
201 {"newproxy_view_id", kSmallSize},
202 {"newproxy_opener_id", kSmallSize},
203 {"newproxy_parent_id", kSmallSize},
204 {"rvinit_view_id", kSmallSize},
205 {"rvinit_proxy_id", kSmallSize},
206 {"rvinit_main_frame_id", kSmallSize},
207 {"initrf_frame_id", kSmallSize},
208 {"initrf_proxy_id", kSmallSize},
209 {"initrf_view_id", kSmallSize},
210 {"initrf_main_frame_id", kSmallSize},
211 {"initrf_view_is_live", kSmallSize},
212
213 // Temporary for https://crbug.com/591478. 192 // Temporary for https://crbug.com/591478.
214 {"initrf_parent_proxy_exists", kSmallSize}, 193 {"initrf_parent_proxy_exists", kSmallSize},
215 {"initrf_render_view_is_live", kSmallSize}, 194 {"initrf_render_view_is_live", kSmallSize},
216 {"initrf_parent_is_in_same_site_instance", kSmallSize}, 195 {"initrf_parent_is_in_same_site_instance", kSmallSize},
217 {"initrf_parent_process_is_live", kSmallSize}, 196 {"initrf_parent_process_is_live", kSmallSize},
218 {"initrf_root_is_in_same_site_instance", kSmallSize}, 197 {"initrf_root_is_in_same_site_instance", kSmallSize},
219 {"initrf_root_is_in_same_site_instance_as_parent", kSmallSize}, 198 {"initrf_root_is_in_same_site_instance_as_parent", kSmallSize},
220 {"initrf_root_process_is_live", kSmallSize}, 199 {"initrf_root_process_is_live", kSmallSize},
221 {"initrf_root_proxy_is_live", kSmallSize}, 200 {"initrf_root_proxy_is_live", kSmallSize},
222 201
(...skipping 149 matching lines...) Expand 10 before | Expand all | Expand 10 after
372 } 351 }
373 352
374 ScopedPrinterInfo::~ScopedPrinterInfo() { 353 ScopedPrinterInfo::~ScopedPrinterInfo() {
375 for (size_t i = 0; i < kPrinterInfoCount; ++i) { 354 for (size_t i = 0; i < kPrinterInfoCount; ++i) {
376 std::string key = base::StringPrintf(kPrinterInfo, i + 1); 355 std::string key = base::StringPrintf(kPrinterInfo, i + 1);
377 base::debug::ClearCrashKey(key); 356 base::debug::ClearCrashKey(key);
378 } 357 }
379 } 358 }
380 359
381 } // namespace crash_keys 360 } // namespace crash_keys
OLDNEW
« no previous file with comments | « chrome/app/chrome_crash_reporter_client_win.cc ('k') | chromecast/crash/cast_crash_keys.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698