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

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

Side-by-side diff isn't available for this file because of its large size.
Issue 884843002: Recording in UMA when a user interacted with an address form or a credit card form. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: inlining web_profiles() call Created 5 years, 10 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
« no previous file with comments | « components/autofill/core/browser/personal_data_manager.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/metrics/histograms/histograms.xml
diff --git a/tools/metrics/histograms/histograms.xml b/tools/metrics/histograms/histograms.xml
index 7b2a5f27b5ccf841eb7797fa4a71eaaf56520443..40e25f3786db96f673328ff9302b4e7f7d6761bf 100644
--- a/tools/metrics/histograms/histograms.xml
+++ b/tools/metrics/histograms/histograms.xml
@@ -1803,6 +1803,22 @@ Therefore, the affected-histogram name has to have at least one dot in it.
</summary>
</histogram>
+<histogram name="Autofill.FormEvents.Address" enum="AutofillFormEvent">
+ <owner>waltercacau@chromium.org</owner>
+ <summary>
+ Autofill form events for address forms. These are recorded when the user
+ interacts with a form requesting an address.
+ </summary>
+</histogram>
+
+<histogram name="Autofill.FormEvents.CreditCard" enum="AutofillFormEvent">
+ <owner>waltercacau@chromium.org</owner>
+ <summary>
+ Autofill form events for credit card forms. These are recorded when the user
+ interacts with a form requesting a credit card.
+ </summary>
+</histogram>
+
<histogram name="Autofill.IsEnabled.PageLoad" enum="BooleanEnabled">
<owner>isherman@chromium.org</owner>
<summary>
@@ -42765,6 +42781,10 @@ Therefore, the affected-histogram name has to have at least one dot in it.
<int value="17" label="fp05cc03e1"/>
</enum>
+<enum name="AutofillFormEvent" type="int">
+ <int value="1" label="Interacted once"/>
+</enum>
+
<enum name="AutofillMacAddressBook" type="int">
<int value="0" label="Showed popup entry"/>
<int value="1" label="Selected popup entry"/>
@@ -58932,6 +58952,16 @@ To add a new entry, add it with any value and run test to compute valid value.
<affected-histogram name="Renderer4.StartToFinish"/>
</histogram_suffixes>
+<histogram_suffixes name="AutofillDataAvailability">
+ <suffix name="WithNoData" label="no autofill data"/>
+ <suffix name="WithOnlyServerData" label="only server autofill data"/>
+ <suffix name="WithOnlyLocalData" label="only local autofill data"/>
+ <suffix name="WithBothServerAndLocalData"
+ label="both server and local autofill data"/>
+ <affected-histogram name="Autofill.FormEvents.Address"/>
+ <affected-histogram name="Autofill.FormEvents.CreditCard"/>
+</histogram_suffixes>
+
<histogram_suffixes name="AutofillServerExperiments">
<suffix name="ar06" label="Acceptance ratio: 0.6"/>
<suffix name="ar1" label="Acceptance ratio: 1.0"/>
« no previous file with comments | « components/autofill/core/browser/personal_data_manager.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698