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

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

Issue 2113743002: Add instrumentation for password autofill and Credential Manager API user flows. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: describe actions better Created 4 years, 5 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
OLDNEW
1 <!-- 1 <!--
2 Copyright 2014 The Chromium Authors. All rights reserved. 2 Copyright 2014 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 a comprehensive list of Chrome user actions along with the owner 8 This file is a comprehensive list of Chrome user actions along with the owner
9 and description for each user action. A user action should be tied to an actual 9 and description for each user action. A user action should be tied to an actual
10 action taken by a user. It should be logged immediately after a user takes the 10 action taken by a user. It should be logged immediately after a user takes the
(...skipping 2841 matching lines...) Expand 10 before | Expand all | Expand 10 after
2852 <action name="CreateProfile"> 2852 <action name="CreateProfile">
2853 <owner>Please list the metric's owners. Add more owner tags as needed.</owner> 2853 <owner>Please list the metric's owners. Add more owner tags as needed.</owner>
2854 <description>Please enter the description of this user action.</description> 2854 <description>Please enter the description of this user action.</description>
2855 </action> 2855 </action>
2856 2856
2857 <action name="CreateShortcut"> 2857 <action name="CreateShortcut">
2858 <owner>Please list the metric's owners. Add more owner tags as needed.</owner> 2858 <owner>Please list the metric's owners. Add more owner tags as needed.</owner>
2859 <description>Please enter the description of this user action.</description> 2859 <description>Please enter the description of this user action.</description>
2860 </action> 2860 </action>
2861 2861
2862 <action name="Credential_Manager_AccountChooser_Click">
Ilya Sherman 2016/07/01 17:59:54 Optional nit: I'd write "CredentialManager" as a s
Ilya Sherman 2016/07/01 17:59:55 Optional nit: I'd replace "Click" with something l
vasilii 2016/07/04 20:10:41 Done. Shortened, so it fits one line in the code.
vasilii 2016/07/04 20:10:41 Done.
2863 <owner>vasilii@chromium.org</owner>
2864 <description>User chose a credential via the account chooser</description>
Ilya Sherman 2016/07/01 17:59:54 nit: Please end the sentence with a period (and pl
Ilya Sherman 2016/07/01 17:59:54 nit: s/User/The user (and please apply this change
vasilii 2016/07/04 20:10:41 Done.
vasilii 2016/07/04 20:10:41 Done.
2865 </action>
2866
2867 <action name="Credential_Manager_AccountChooser_Dismiss">
Ilya Sherman 2016/07/01 17:59:55 Optional nit: I'd name this "Dismissed" rather tha
vasilii 2016/07/04 20:10:41 Done.
2868 <owner>vasilii@chromium.org</owner>
2869 <description>User dismissed the account chooser</description>
2870 </action>
2871
2872 <action name="Credential_Manager_Autosignin">
2873 <owner>vasilii@chromium.org</owner>
2874 <description>Try to automatically sign user in</description>
Ilya Sherman 2016/07/01 17:59:54 I *think* this description means "The website trie
vasilii 2016/07/04 20:10:41 I changed the description. A failure case is the t
2875 </action>
2876
2877 <action name="Credential_Manager_Get_EmptyStore">
2878 <owner>vasilii@chromium.org</owner>
2879 <description>
2880 A site requested a credential but the store is empty
Ilya Sherman 2016/07/01 17:59:55 This also doesn't really seem like a user action.
vasilii 2016/07/04 20:10:41 Removed.
2881 </description>
2882 </action>
2883
2862 <action name="CriticalNotificationShown"> 2884 <action name="CriticalNotificationShown">
2863 <owner>Please list the metric's owners. Add more owner tags as needed.</owner> 2885 <owner>Please list the metric's owners. Add more owner tags as needed.</owner>
2864 <description>Please enter the description of this user action.</description> 2886 <description>Please enter the description of this user action.</description>
2865 </action> 2887 </action>
2866 2888
2867 <action name="CriticalNotification_AutoRestart"> 2889 <action name="CriticalNotification_AutoRestart">
2868 <owner>Please list the metric's owners. Add more owner tags as needed.</owner> 2890 <owner>Please list the metric's owners. Add more owner tags as needed.</owner>
2869 <description>Please enter the description of this user action.</description> 2891 <description>Please enter the description of this user action.</description>
2870 </action> 2892 </action>
2871 2893
(...skipping 9199 matching lines...) Expand 10 before | Expand all | Expand 10 after
12071 <action name="Panel_Minimize_Caption_Click"> 12093 <action name="Panel_Minimize_Caption_Click">
12072 <owner>Please list the metric's owners. Add more owner tags as needed.</owner> 12094 <owner>Please list the metric's owners. Add more owner tags as needed.</owner>
12073 <description>Please enter the description of this user action.</description> 12095 <description>Please enter the description of this user action.</description>
12074 </action> 12096 </action>
12075 12097
12076 <action name="Panel_Minimize_Caption_Gesture"> 12098 <action name="Panel_Minimize_Caption_Gesture">
12077 <owner>Please list the metric's owners. Add more owner tags as needed.</owner> 12099 <owner>Please list the metric's owners. Add more owner tags as needed.</owner>
12078 <description>Please enter the description of this user action.</description> 12100 <description>Please enter the description of this user action.</description>
12079 </action> 12101 </action>
12080 12102
12103 <action name="PasswordManager_Autofilled">
12104 <owner>vasilii@chromium.org</owner>
12105 <description>Username/password were autofilled</description>
Ilya Sherman 2016/07/01 17:59:55 Please expand this description. Is this just on p
vasilii 2016/07/04 20:10:40 Done.
12106 </action>
12107
12108 <action name="PasswordManager_ChooseNonDefault">
Ilya Sherman 2016/07/01 17:59:54 Optional nit: s/Choose/Chose
vasilii 2016/07/04 20:10:40 Done.
12109 <owner>vasilii@chromium.org</owner>
12110 <description>
12111 An existing credential becomes the new default one for the page after user
12112 logged in with it
Ilya Sherman 2016/07/01 17:59:54 This description doesn't obviously match the actio
vasilii 2016/07/04 20:10:40 Done. Alternate credential has already been saved.
12113 </description>
12114 </action>
12115
12116 <action name="PasswordManager_ChoosePSL">
Ilya Sherman 2016/07/01 17:59:55 Optional nit: s/Choose/Chose
vasilii 2016/07/04 20:10:41 Done.
12117 <owner>vasilii@chromium.org</owner>
12118 <description>
12119 User tries to log in with an existing PSL-match credential
Ilya Sherman 2016/07/01 17:59:54 "PSL" is pretty jargony, i.e. is hard for someone
Ilya Sherman 2016/07/01 17:59:55 What does "tries to" mean here? That is, what are
vasilii 2016/07/04 20:10:40 Done.
vasilii 2016/07/04 20:10:41 Done.
12120 </description>
12121 </action>
12122
12081 <action name="PasswordManager_Disabled"> 12123 <action name="PasswordManager_Disabled">
12082 <owner>Please list the metric's owners. Add more owner tags as needed.</owner> 12124 <owner>Please list the metric's owners. Add more owner tags as needed.</owner>
12083 <description>Please enter the description of this user action.</description> 12125 <description>Please enter the description of this user action.</description>
12084 </action> 12126 </action>
12085 12127
12086 <action name="PasswordManager_Enabled"> 12128 <action name="PasswordManager_Enabled">
12087 <owner>Please list the metric's owners. Add more owner tags as needed.</owner> 12129 <owner>Please list the metric's owners. Add more owner tags as needed.</owner>
12088 <description>Please enter the description of this user action.</description> 12130 <description>Please enter the description of this user action.</description>
12089 </action> 12131 </action>
12090 12132
12133 <action name="PasswordManager_OverridePassword">
Ilya Sherman 2016/07/01 17:59:54 nit: Perhaps name this "LoggedInWithNewPassword"?
vasilii 2016/07/04 20:10:41 Done.
12134 <owner>vasilii@chromium.org</owner>
12135 <description>
12136 User tries to log in with an existing (PSL or not) credential but different
12137 password
12138 </description>
12139 </action>
12140
12141 <action name="PasswordManager_OverrideUsernameAndPassword">
Ilya Sherman 2016/07/01 17:59:54 nit: Perhaps name this "LoggedInWithNewUsername" o
vasilii 2016/07/04 20:10:40 Done.
12142 <owner>vasilii@chromium.org</owner>
12143 <description>
12144 User tries to login with a completely new (possibly auto generated)
Ilya Sherman 2016/07/01 17:59:54 nit: s/login/log in
vasilii 2016/07/04 20:10:40 Done.
12145 credential
12146 </description>
12147 </action>
12148
12091 <action name="PasswordManager_RemovePasswordException"> 12149 <action name="PasswordManager_RemovePasswordException">
12092 <owner>Please list the metric's owners. Add more owner tags as needed.</owner> 12150 <owner>Please list the metric's owners. Add more owner tags as needed.</owner>
12093 <description>Please enter the description of this user action.</description> 12151 <description>Please enter the description of this user action.</description>
12094 </action> 12152 </action>
12095 12153
12096 <action name="PasswordManager_RemoveSavedPassword"> 12154 <action name="PasswordManager_RemoveSavedPassword">
12097 <owner>Please list the metric's owners. Add more owner tags as needed.</owner> 12155 <owner>Please list the metric's owners. Add more owner tags as needed.</owner>
12098 <description>Please enter the description of this user action.</description> 12156 <description>Please enter the description of this user action.</description>
12099 </action> 12157 </action>
12100 12158
12159 <action name="PasswordManager_SubmitFailed">
12160 <owner>vasilii@chromium.org</owner>
12161 <description>Password form submission failed</description>
Ilya Sherman 2016/07/01 17:59:55 This doesn't seem like a user action, per se. Wha
vasilii 2016/07/04 20:10:40 It means that the login was unsuccessful from the
12162 </action>
12163
12164 <action name="PasswordManager_SubmitPassed">
12165 <owner>vasilii@chromium.org</owner>
12166 <description>Password form submitted successfully</description>
Ilya Sherman 2016/07/01 17:59:55 This doesn't seem like a user action, per se. Wha
vasilii 2016/07/04 20:10:40 It means that the password was probably correct.
12167 </action>
12168
12101 <action name="PasswordManager_SyncCredentialShown"> 12169 <action name="PasswordManager_SyncCredentialShown">
12102 <owner>gcasto@chromium.org</owner> 12170 <owner>gcasto@chromium.org</owner>
12103 <owner>vabr@chromium.org</owner> 12171 <owner>vabr@chromium.org</owner>
12104 <description> 12172 <description>
12105 Counts the number of times a user views the saved credentials for their sync 12173 Counts the number of times a user views the saved credentials for their sync
12106 account. 12174 account.
12107 </description> 12175 </description>
12108 </action> 12176 </action>
12109 12177
12110 <action name="PasswordManager_SyncCredentialUsed"> 12178 <action name="PasswordManager_SyncCredentialUsed">
(...skipping 2757 matching lines...) Expand 10 before | Expand all | Expand 10 after
14868 <action name="webapps.AddShortcut.Manifest"> 14936 <action name="webapps.AddShortcut.Manifest">
14869 <owner>mlamouri@chromium.org</owner> 14937 <owner>mlamouri@chromium.org</owner>
14870 <description> 14938 <description>
14871 Shortcut added to the homescreen with a valid Manifest. This action will be 14939 Shortcut added to the homescreen with a valid Manifest. This action will be
14872 recorded in addition to AppShortcut, AppShortcutApple and Bookmark actions 14940 recorded in addition to AppShortcut, AppShortcutApple and Bookmark actions
14873 to keep a trend of whether the webapp also add meta tags. 14941 to keep a trend of whether the webapp also add meta tags.
14874 </description> 14942 </description>
14875 </action> 14943 </action>
14876 14944
14877 </actions> 14945 </actions>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698