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

Unified Diff: chrome/common/pref_names.cc

Issue 103943006: Let MetricsService know about some Android Activities (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: NOTREACHED Created 7 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 side-by-side diff with in-line comments
Download patch
Index: chrome/common/pref_names.cc
diff --git a/chrome/common/pref_names.cc b/chrome/common/pref_names.cc
index eece5eb62a8a99984546ae59c251e176d5383896..17dab90678683f685312dd2621420ad8782f4520 100644
--- a/chrome/common/pref_names.cc
+++ b/chrome/common/pref_names.cc
@@ -1493,6 +1493,33 @@ const char kStabilityKernelCrashCount[] =
const char kStabilitySystemUncleanShutdownCount[] =
"user_experience_metrics.stability.system_unclean_shutdowns";
+#if defined(OS_ANDROID)
+// ID of the Activity that is currently in the foreground.
Alexei Svitkine (slow) 2013/12/23 16:28:01 What kind of ID and how is it stored (string / int
gone 2013/12/28 01:33:14 Done.
+const char kStabilityForegroundActivityType[] =
+ "user_experience_metrics.stability.foreground_activity";
+
+// ORed set of flags indicating which Activities were launched during the
Alexei Svitkine (slow) 2013/12/23 16:28:01 Which flags? Can you point to the corresponding co
gone 2013/12/28 01:33:14 Done.
+// last session.
+const char kStabilityLaunchedActivityFlags[] =
+ "user_experience_metrics.stability.launched_activity_flags";
+
+// Counts how many times the main browser Activity was launched.
+const char kStabilityLaunchCountMainActivity[] =
+ "user_experience_metrics.stability.launch_count_main_activity";
Alexei Svitkine (slow) 2013/12/23 16:28:01 Instead of special casing main activity, full scre
gone 2013/12/28 01:33:14 Which activity is in a singular value; only one ca
+
+// Counts how many times a FullScreenActivity was launched.
+const char kStabilityLaunchCountFullScreenActivity[] =
+ "user_experience_metrics.stability.launch_count_full_screen_activity";
+
+// Counts how many times the main browser Activity crashed.
+const char kStabilityCrashCountMainActivity[] =
+ "user_experience_metrics.stability.crash_count_main_activity";
+
+// Counts how many times a FullScreenActivity crashed.
+const char kStabilityCrashCountFullScreenActivity[] =
+ "user_experience_metrics.stability.crash_count_full_screen_activity";
+#endif
+
// Number of times the browser has been able to register crash reporting.
const char kStabilityBreakpadRegistrationSuccess[] =
"user_experience_metrics.stability.breakpad_registration_ok";

Powered by Google App Engine
This is Rietveld 408576698