summaryrefslogtreecommitdiffstats
path: root/tools
diff options
context:
space:
mode:
authormlerman@chromium.org <mlerman@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2014-08-15 17:59:55 +0000
committermlerman@chromium.org <mlerman@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2014-08-15 17:59:55 +0000
commit337c7ae24b7d81ea18674d8202df79255344ce9d (patch)
tree188179ea8dd6a0eacc417d2fd67cbd3293617e40 /tools
parent43584fc0a3b4d054439740c5fec65293615e62c6 (diff)
downloadchromium_src-337c7ae24b7d81ea18674d8202df79255344ce9d.zip
chromium_src-337c7ae24b7d81ea18674d8202df79255344ce9d.tar.gz
chromium_src-337c7ae24b7d81ea18674d8202df79255344ce9d.tar.bz2
Add metrics to the new ProfileChooser Tutorials
Noms as TBR, the profile_metrics have been well reviewed by others. BUG=401147 TBD=noms@chromium.org Review URL: https://codereview.chromium.org/470643002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@289935 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'tools')
-rw-r--r--tools/metrics/histograms/histograms.xml70
1 files changed, 69 insertions, 1 deletions
diff --git a/tools/metrics/histograms/histograms.xml b/tools/metrics/histograms/histograms.xml
index 63896f0..d008d4d 100644
--- a/tools/metrics/histograms/histograms.xml
+++ b/tools/metrics/histograms/histograms.xml
@@ -24806,7 +24806,7 @@ Therefore, the affected-histogram name has to have at least one dot in it.
<histogram name="Profile.DeleteProfileAction" enum="ProfileDeleteAction">
<owner>mlerman@chromium.org</owner>
<summary>
- Thie histogram tracks which UI screen was used to delete a profile. This
+ This histogram tracks which UI screen was used to delete a profile. This
does not track when the profile is actually deleted, which is an
asycnhronous process that happens later.
</summary>
@@ -24865,6 +24865,34 @@ Therefore, the affected-histogram name has to have at least one dot in it.
</summary>
</histogram>
+<histogram name="Profile.NewAvatarMenu.NotYou"
+ enum="ProfileNewAvatarMenuNotYou">
+ <owner>mlerman@chromium.org</owner>
+ <summary>
+ Tracks user interactions with the 'Not You?' bubble that users can navigate
+ to from the Upgrade bubble after upgrade to the New Avatar Menu.
+ </summary>
+</histogram>
+
+<histogram name="Profile.NewAvatarMenu.Signin"
+ enum="ProfileNewAvatarMenuSignin">
+ <owner>mlerman@chromium.org</owner>
+ <summary>
+ Tracks user interactions with the signin bubble that appears in the New
+ Avatar Menu upon signin. This bubble appears after the user signs in using
+ the Inline Signin flow.
+ </summary>
+</histogram>
+
+<histogram name="Profile.NewAvatarMenu.Upgrade"
+ enum="ProfileNewAvatarMenuUpgrade">
+ <owner>mlerman@chromium.org</owner>
+ <summary>
+ Tracks user interactions with the bubble that appears for users in the new
+ avatar menu after upgrade.
+ </summary>
+</histogram>
+
<histogram name="Profile.NumberOfAccountsPerProfile">
<owner>mlerman@chromium.org</owner>
<summary>
@@ -47549,6 +47577,46 @@ To add a new entry, add it with any value and run test to compute valid value.
<int value="1" label="Deleted a profile"/>
</enum>
+<enum name="ProfileNewAvatarMenuNotYou" type="int">
+ <int value="0" label="View 'Not You?' Bubble">
+ User views the 'Not You?' bubble.
+ </int>
+ <int value="1" label="Back">
+ User selects back from within the 'Not You?' bubble.
+ </int>
+ <int value="2" label="Add Person">
+ User adds a person from within the 'Not You?' bubble.
+ </int>
+ <int value="3" label="Disconnect">
+ User chooses to disconnect (sign out) from within the 'Not You?' bubble.
+ </int>
+</enum>
+
+<enum name="ProfileNewAvatarMenuSignin" type="int">
+ <int value="0" label="View Signin Bubble">
+ User viewed the signin bubble after successfully using the inline signin.
+ </int>
+ <int value="1" label="Dismiss">
+ User selected ok to dismiss the signin bubble.
+ </int>
+ <int value="2" label="Settings">
+ User opened the settings from the signin bubble.
+ </int>
+</enum>
+
+<enum name="ProfileNewAvatarMenuUpgrade" type="int">
+ <int value="0" label="View Upgrade Bubble">
+ User views the upgrade bubble.
+ </int>
+ <int value="1" label="Dismiss">User dismissed the upgrade bubble.</int>
+ <int value="2" label="What's New">
+ User selects 'What's New' in the upgrade bubble.
+ </int>
+ <int value="3" label="Not You?">
+ User selects 'Not You?' in the upgrade bubble.
+ </int>
+</enum>
+
<enum name="ProfileOpen" type="int">
<int value="0" label="Add new user"/>
<int value="1" label="Add new user from icon menu"/>