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

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

Issue 949323002: Collecting UMA metrics for the UnmaskPrompt. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: review comments 2 Created 5 years, 9 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 0cb8649f23eea05b2aed352551d059f8eaa5ab2b..0cde2d205a63ea8d5a456e62217f3e0ea6743ffc 100644
--- a/tools/metrics/histograms/histograms.xml
+++ b/tools/metrics/histograms/histograms.xml
@@ -2055,6 +2055,23 @@ Therefore, the affected-histogram name has to have at least one dot in it.
</summary>
</histogram>
+<histogram name="Autofill.UnmaskPrompt.Events" enum="AutofillUnmaskPromptEvent">
+ <owner>waltercacau@chromium.org</owner>
+ <summary>
+ Events tracking the usage of the unmasking prompt. This prompt is
+ triggered when a user selects a masked card in a autofill dropdown.
+ </summary>
+</histogram>
+
+<histogram name="Autofill.UnmaskPrompt.GetRealPanResult" enum="AutofillGetRealPanResult">
+ <owner>waltercacau@chromium.org</owner>
+ <summary>
+ Tracks the result of the GetRealPan API call. This API call is triggered
+ by the unmasking prompt when the user types information to verify his
+ ownership of the card being fetched.
+ </summary>
+</histogram>
+
<histogram name="Autofill.UserHappiness" enum="AutofillUserHappiness">
<owner>isherman@chromium.org</owner>
<summary>
@@ -44706,6 +44723,13 @@ Therefore, the affected-histogram name has to have at least one dot in it.
<int value="14" label="Masked server card suggestion selected (once)"/>
</enum>
+<enum name="AutofillGetRealPanResult" type="int">
+ <int value="0" label="Success"/>
+ <int value="1" label="Retriable failure"/>
+ <int value="2" label="Non retriable failure"/>
+ <int value="3" label="Network error"/>
+</enum>
+
<enum name="AutofillMacAddressBook" type="int">
<int value="0" label="Showed popup entry"/>
<int value="1" label="Selected popup entry"/>
@@ -44801,6 +44825,24 @@ Therefore, the affected-histogram name has to have at least one dot in it.
<int value="53" label="Addr. line 3, Mismatch"/>
</enum>
+<enum name="AutofillUnmaskPromptEvent" type="int">
+ <int value="0" label="Shown"/>
+ <int value="1" label="Closed with no attempts"/>
+ <int value="2" label="Closed, retriable failure"/>
+ <int value="3" label="Closed, non retriable failure"/>
+ <int value="4" label="Closed, success w/ 0 failures">
+ Closed with a successful unmask on the first attempt.
+ </int>
+ <int value="5" label="Closed, success w/ 1+ failures">
+ Closed with successful unmask after failed attempts.
Ilya Sherman 2015/03/19 00:16:01 nit: Please be consistent here vs. three lines up,
+ </int>
+ <int value="6" label="Card saved locally"/>
+ <int value="7" label="Did opt in of local save"/>
+ <int value="8" label="Local save stayed disabled"/>
+ <int value="9" label="Did opt out of local save"/>
+ <int value="10" label="Local save stayed enabled"/>
+</enum>
+
<enum name="AutofillUserHappiness" type="int">
<int value="0" label="Forms loaded"/>
<int value="1" label="Submitted fillable form, autofilled all"/>

Powered by Google App Engine
This is Rietveld 408576698