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

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: Re-upload same patch 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
« chrome/common/crash_keys.h ('K') | « 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..ccf455f6340b651fe0b73fc56375071aacc2bc3b 100644
--- a/chrome/common/crash_keys.cc
+++ b/chrome/common/crash_keys.cc
@@ -64,6 +64,10 @@ const char kNumSwitches[] = "num-switches";
const char kNumVariations[] = "num-experiments";
const char kVariations[] = "variations";
+#if defined(OS_CHROMEOS)
Robert Sesek 2014/01/16 17:26:00 Same.
Mr4D (OOO till 08-26) 2014/01/16 17:51:02 Done.
+const char kNumberOfUsers[] = "num-users";
+#endif
+
const char kExtensionID[] = "extension-%" PRIuS;
const char kNumExtensionsCount[] = "num-extensions";
@@ -116,6 +120,9 @@ size_t RegisterChromeCrashKeys() {
{ kNumVariations, kSmallSize },
{ kVariations, kLargeSize },
{ kNumExtensionsCount, kSmallSize },
+#if defined(OS_CHROMEOS)
Robert Sesek 2014/01/16 17:26:00 Same.
Mr4D (OOO till 08-26) 2014/01/16 17:51:02 Done.
+ { kNumberOfUsers, kSmallSize },
+#endif
{ kNumberOfViews, kSmallSize },
#if !defined(OS_ANDROID)
{ kGPUVendorID, kSmallSize },
« chrome/common/crash_keys.h ('K') | « chrome/common/crash_keys.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698