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

Unified Diff: tools/metrics/histograms/histograms.xml

Side-by-side diff isn't available for this file because of its large size.
Issue 25098009: Log UMA metrics for multiprofile actions. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 2 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:
Download patch
Index: tools/metrics/histograms/histograms.xml
diff --git a/tools/metrics/histograms/histograms.xml b/tools/metrics/histograms/histograms.xml
index 78ddae6d05f1f1581dd655b7f28ff1aa3ede9603..671a026b11a84336b428bd115db6aecac77b33f8 100644
--- a/tools/metrics/histograms/histograms.xml
+++ b/tools/metrics/histograms/histograms.xml
@@ -6582,6 +6582,27 @@ other types of suffix sets.
</summary>
</histogram>
+<histogram name="MultiProfile.SigninUser" enum="SigninUserAction">
Ilya Sherman 2013/09/28 00:29:35 nit: I'd suggest naming this histogram something m
Tim Song 2013/09/28 01:35:13 Done. I think SigninUserUIPath should better descr
+ <summary>
+ The number of times a user is signed into a multiprofile session on ChromeOS
+ for each UI flow (eg. system tray, browser frame).
Ilya Sherman 2013/09/28 00:29:35 nit: I'd rephrase this description to something a
Tim Song 2013/09/28 01:35:13 Done.
+ </summary>
+</histogram>
+
+<histogram name="MultiProfile.SwitchActiveUser" enum="SwitchActiveUserAction">
Ilya Sherman 2013/09/28 00:29:35 nit: Since the enums are highly related, it would
Tim Song 2013/09/28 01:35:13 Done.
+ <summary>
+ The number of times the active user switched in a multiprofile session on
+ ChromeOS for each UI flow (eg. system tray, keyboard shortcut).
+ </summary>
+</histogram>
+
+<histogram name="Multiprofile.UserCount">
+ <summary>
+ The number of users simultaneously signed into a multiprofile session on
+ ChromeOS.
Ilya Sherman 2013/09/28 00:29:35 Please document when this will be recorded.
Tim Song 2013/09/28 01:35:13 Done.
+ </summary>
+</histogram>
+
<histogram name="Navigation.MainFrameScheme" enum="NavigationScheme">
<summary>The scheme of the URL for each main-frame navigation.</summary>
</histogram>
@@ -25507,6 +25528,11 @@ other types of suffix sets.
<int value="2" label="Dismiss"/>
</enum>
+<enum name="SigninUserAction" type="int">
+ <int value="0" label="SIGNIN_USER_BY_TRAY"/>
+ <int value="1" label="SIGNIN_USER_BY_BROWSER_FRAME"/>
Ilya Sherman 2013/09/28 00:29:35 These labels are human-readable strings, so it wou
Tim Song 2013/09/28 01:35:13 Done.
+</enum>
+
<enum name="SimpleCache.EntryCreatedAndStream2Omitted" type="int">
<int value="0" label="Stream 2 file was present"/>
<int value="1" label="Empty stream 2 file was omitted"/>
@@ -26307,6 +26333,11 @@ other types of suffix sets.
<int value="3" label="Attempted"/>
</enum>
+<enum name="SwitchActiveUserAction" type="int">
+ <int value="0" label="SWITCH_ACTIVE_USER_BY_TRAY"/>
+ <int value="1" label="SWITCH_ACTIVE_USER_BY_ACCELERATOR"/>
+</enum>
+
<enum name="TabRestoreResult" type="int">
<int value="0" label="Failure (other)"/>
<int value="1" label="Success"/>
« ash/multi_profile_uma.cc ('K') | « chrome/browser/chromeos/profiles/avatar_menu_actions_chromeos.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698