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

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

Issue 2572573003: Remove old diagnostic crash reports. (Closed)
Patch Set: Preserve routing ID. Created 4 years 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 169 matching lines...) Expand 10 before | Expand all | Expand 10 after
180 180
181 // media/: 181 // media/:
182 #if defined(OS_WIN) 182 #if defined(OS_WIN)
183 { kHungAudioThreadDetails, kSmallSize }, 183 { kHungAudioThreadDetails, kSmallSize },
184 #endif 184 #endif
185 { kZeroEncodeDetails, kSmallSize }, 185 { kZeroEncodeDetails, kSmallSize },
186 186
187 // gin/: 187 // gin/:
188 { "v8-ignition", kSmallSize }, 188 { "v8-ignition", kSmallSize },
189 189
190 // Temporary for http://crbug.com/575245.
191 { "swapout_frame_id", kSmallSize },
192 { "swapout_proxy_id", kSmallSize },
193 { "swapout_view_id", kSmallSize },
194 { "commit_frame_id", kSmallSize },
195 { "commit_proxy_id", kSmallSize },
196 { "commit_view_id", kSmallSize },
197 { "commit_main_render_frame_id", kSmallSize },
198 { "newproxy_proxy_id", kSmallSize },
199 { "newproxy_view_id", kSmallSize },
200 { "newproxy_opener_id", kSmallSize },
201 { "newproxy_parent_id", kSmallSize },
202 { "rvinit_view_id", kSmallSize },
203 { "rvinit_proxy_id", kSmallSize },
204 { "rvinit_main_frame_id", kSmallSize },
205 { "initrf_frame_id", kSmallSize },
206 { "initrf_proxy_id", kSmallSize },
207 { "initrf_view_id", kSmallSize },
208 { "initrf_main_frame_id", kSmallSize },
209 { "initrf_view_is_live", kSmallSize },
210
211 // Temporary for https://crbug.com/591478. 190 // Temporary for https://crbug.com/591478.
212 { "initrf_parent_proxy_exists", kSmallSize }, 191 { "initrf_parent_proxy_exists", kSmallSize },
213 { "initrf_render_view_is_live", kSmallSize }, 192 { "initrf_render_view_is_live", kSmallSize },
214 { "initrf_parent_is_in_same_site_instance", kSmallSize}, 193 { "initrf_parent_is_in_same_site_instance", kSmallSize},
215 { "initrf_parent_process_is_live", kSmallSize}, 194 { "initrf_parent_process_is_live", kSmallSize},
216 { "initrf_root_is_in_same_site_instance", kSmallSize}, 195 { "initrf_root_is_in_same_site_instance", kSmallSize},
217 { "initrf_root_is_in_same_site_instance_as_parent", kSmallSize}, 196 { "initrf_root_is_in_same_site_instance_as_parent", kSmallSize},
218 { "initrf_root_process_is_live", kSmallSize}, 197 { "initrf_root_process_is_live", kSmallSize},
219 { "initrf_root_proxy_is_live", kSmallSize}, 198 { "initrf_root_proxy_is_live", kSmallSize},
220 199
(...skipping 161 matching lines...) Expand 10 before | Expand all | Expand 10 after
382 } 361 }
383 362
384 ScopedPrinterInfo::~ScopedPrinterInfo() { 363 ScopedPrinterInfo::~ScopedPrinterInfo() {
385 for (size_t i = 0; i < kPrinterInfoCount; ++i) { 364 for (size_t i = 0; i < kPrinterInfoCount; ++i) {
386 std::string key = base::StringPrintf(kPrinterInfo, i + 1); 365 std::string key = base::StringPrintf(kPrinterInfo, i + 1);
387 base::debug::ClearCrashKey(key); 366 base::debug::ClearCrashKey(key);
388 } 367 }
389 } 368 }
390 369
391 } // namespace crash_keys 370 } // namespace crash_keys
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698