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

Side by Side Diff: tools/metrics/ukm/ukm.xml

Issue 2839063004: [Autofill] UKM for suggestions polled field. (Closed)
Patch Set: Address comments Created 3 years, 6 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:
View unified diff | Download patch
« no previous file with comments | « components/autofill/core/browser/autofill_metrics_unittest.cc ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 <!-- 1 <!--
2 Copyright 2017 The Chromium Authors. All rights reserved. 2 Copyright 2017 The Chromium Authors. All rights reserved.
3 Use of this source code is governed by a BSD-style license that can be 3 Use of this source code is governed by a BSD-style license that can be
4 found in the LICENSE file. 4 found in the LICENSE file.
5 --> 5 -->
6 6
7 <!-- 7 <!--
8 This file is used to generate a comprehensive list of Chrome UKM metrics 8 This file is used to generate a comprehensive list of Chrome UKM metrics
9 along with a detailed description for each metric. 9 along with a detailed description for each metric.
10 10
(...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after
69 Number of local credit cards or local autofill profiles. 69 Number of local credit cards or local autofill profiles.
70 </summary> 70 </summary>
71 </metric> 71 </metric>
72 <metric name="ServerRecordTypeCount"> 72 <metric name="ServerRecordTypeCount">
73 <summary> 73 <summary>
74 Number of masked and full server credit cards or server autofill profiles. 74 Number of masked and full server credit cards or server autofill profiles.
75 </summary> 75 </summary>
76 </metric> 76 </metric>
77 </event> 77 </event>
78 78
79 <event name="Autofill.SuggestionsShown"> 79 <event name="Autofill.SelectedMaskedServerCard">
80 <owner>csashi@google.com</owner> 80 <owner>csashi@google.com</owner>
81 <metric name="MillisecondsSinceFormParsed"> 81 <metric name="MillisecondsSinceFormParsed">
82 <summary> 82 <summary>
83 Time since form parse. 83 Time since form parse.
84 </summary> 84 </summary>
85 </metric> 85 </metric>
86 </event> 86 </event>
87 87
88 <event name="Autofill.SelectedMaskedServerCard">
89 <owner>csashi@google.com</owner>
90 <metric name="MillisecondsSinceFormParsed">
91 <summary>
92 Time since form parse.
93 </summary>
94 </metric>
95 </event>
96
97 <event name="Autofill.SuggestionFilled"> 88 <event name="Autofill.SuggestionFilled">
98 <owner>csashi@google.com</owner> 89 <owner>csashi@google.com</owner>
99 <summary> 90 <summary>
100 Recorded when user selects a suggestion and we fill the form with that 91 Recorded when user selects a suggestion and we fill the form with that
101 suggestion. 92 suggestion.
102 </summary> 93 </summary>
103 <metric name="MillisecondsSinceFormParsed"> 94 <metric name="MillisecondsSinceFormParsed">
104 <summary> 95 <summary>
105 Time since form parse. 96 Time since form parse.
106 </summary> 97 </summary>
107 </metric> 98 </metric>
108 <metric name="RecordType"> 99 <metric name="RecordType">
109 <summary> 100 <summary>
110 Whether the suggestion was from a local card/autofill profile or from a 101 Whether the suggestion was from a local card/autofill profile or from a
111 server card/autofill profile. 102 server card/autofill profile.
112 </summary> 103 </summary>
113 </metric> 104 </metric>
114 </event> 105 </event>
106
107 <event name="Autofill.SuggestionsShown">
108 <owner>csashi@google.com</owner>
109 <summary>
110 Recorded when a suggestion is shown to user.
111 </summary>
112 <metric name="HeuristicType">
113 <summary>
114 Field's |ServerFieldType| based on heuristics. See
115 |AutofillField.heuristic_type()|.
116 </summary>
117 </metric>
118 <metric name="HtmlFieldType">
119 <summary>
120 Field's autocomplete field type hint. See |AutofillField.html_type()|.
121 </summary>
122 </metric>
123 <metric name="MillisecondsSinceFormParsed">
124 <summary>
125 Time since form parse.
126 </summary>
127 </metric>
128 <metric name="ServerType">
129 <summary>
130 Field's |ServerFieldType| returned by server. See
131 |AutofillField.server_type()|.
132 </summary>
133 </metric>
134 </event>
115 135
116 <event name="Autofill.TextFieldDidChange"> 136 <event name="Autofill.TextFieldDidChange">
117 <owner>csashi@google.com</owner> 137 <owner>csashi@google.com</owner>
118 <summary> 138 <summary>
119 Recorded when user edits a text field. The text field may have been 139 Recorded when user edits a text field. The text field may have been
120 autofilled. 140 autofilled.
121 </summary> 141 </summary>
122 <metric name="FieldTypeGroup"> 142 <metric name="FieldTypeGroup">
123 <summary> 143 <summary>
124 Field's |FieldTypeGroup|. See |AutofillType.group()|. 144 Field's |FieldTypeGroup|. See |AutofillType.group()|.
(...skipping 208 matching lines...) Expand 10 before | Expand all | Expand 10 after
333 <metric name="DeclineCount"/> 353 <metric name="DeclineCount"/>
334 <metric name="EventType"/> 354 <metric name="EventType"/>
335 <metric name="IgnoreCount"/> 355 <metric name="IgnoreCount"/>
336 <metric name="RankerResponse"/> 356 <metric name="RankerResponse"/>
337 <metric name="RankerVersion"/> 357 <metric name="RankerVersion"/>
338 <metric name="SourceLanguage"/> 358 <metric name="SourceLanguage"/>
339 <metric name="TargetLanguage"/> 359 <metric name="TargetLanguage"/>
340 </event> 360 </event>
341 361
342 </ukm-configuration> 362 </ukm-configuration>
OLDNEW
« no previous file with comments | « components/autofill/core/browser/autofill_metrics_unittest.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698