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

Unified Diff: chrome/common/crash_keys.cc

Issue 137753007: Adding number of users to crash record (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Addressed Created 6 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/common/crash_keys.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/common/crash_keys.cc
diff --git a/chrome/common/crash_keys.cc b/chrome/common/crash_keys.cc
index f3926c4a6cf7dd9bfc88f0e692469e55a7742e42..2bf2bb2a47bac505c61a621d2ae9160bb78fd5c3 100644
--- a/chrome/common/crash_keys.cc
+++ b/chrome/common/crash_keys.cc
@@ -85,6 +85,10 @@ const char kGPURenderer[] = "gpu-gl-renderer";
const char kPrinterInfo[] = "prn-info-%" PRIuS;
+#if defined(OS_CHROMEOS)
+const char kNumberOfUsers[] = "num-users";
+#endif
+
#if defined(OS_MACOSX)
namespace mac {
@@ -134,6 +138,9 @@ size_t RegisterChromeCrashKeys() {
// content/:
{ "ppapi_path", kMediumSize },
{ "subresource_url", kLargeSize },
+#if defined(OS_CHROMEOS)
+ { kNumberOfUsers, kSmallSize },
+#endif
#if defined(OS_MACOSX)
{ mac::kFirstNSException, kMediumSize },
{ mac::kFirstNSExceptionTrace, kMediumSize },
« no previous file with comments | « chrome/common/crash_keys.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698