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

Unified Diff: chrome/common/crash_keys.cc

Issue 1438863002: Simulated Crash reporting for ErrAborted requests (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 1 month 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 side-by-side diff with in-line comments
Download patch
Index: chrome/common/crash_keys.cc
diff --git a/chrome/common/crash_keys.cc b/chrome/common/crash_keys.cc
index 06e262fb6a75255dbb957aaff37a04cefee72369..9b44475120017ba2182536f8a946b76b85312626 100644
--- a/chrome/common/crash_keys.cc
+++ b/chrome/common/crash_keys.cc
@@ -82,6 +82,8 @@ const char kViewCount[] = "view-count";
const char kZeroEncodeDetails[] = "zero-encode-details";
+const char kFastErrAbortTrace[] = "fast-err-abort-trace";
+
size_t RegisterChromeCrashKeys() {
// The following keys may be chunked by the underlying crash logging system,
// but ultimately constitute a single key-value pair.
@@ -146,6 +148,7 @@ size_t RegisterChromeCrashKeys() {
{ kBug464926CrashKey, kSmallSize },
{ kViewCount, kSmallSize },
{ kZeroEncodeDetails, kSmallSize },
+ { kFastErrAbortTrace, kMediumSize},
};
// This dynamic set of keys is used for sets of key value pairs when gathering

Powered by Google App Engine
This is Rietveld 408576698