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

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

Issue 2130923002: Added UMA metrics for display settings UI in the status area. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Merge branch 'master' into uma_display 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 13784 matching lines...) Expand 10 before | Expand all | Expand 10 after
13795 </description> 13795 </description>
13796 </action> 13796 </action>
13797 13797
13798 <action name="StatusArea_Cast_StopCast"> 13798 <action name="StatusArea_Cast_StopCast">
13799 <owner>jdufault@chromium.org</owner> 13799 <owner>jdufault@chromium.org</owner>
13800 <description> 13800 <description>
13801 Counts the number of times the user has stopped a cast from the system tray. 13801 Counts the number of times the user has stopped a cast from the system tray.
13802 </description> 13802 </description>
13803 </action> 13803 </action>
13804 13804
13805 <action name="StatusArea_Display_Default_Selected">
13806 <owner>bruthig@chromium.org</owner>
13807 <owner>tbuckley@chromium.org</owner>
13808 <description>
13809 Counts the number of times the user selects the display row in the system
tdanderson 2016/07/08 18:37:50 Add something such as "...does not always open the
bruthig 2016/07/08 21:11:17 Done.
13810 menu. This action does not always open the display settings. Use the
13811 StatusArea_Display_Default_ShowSettings metric for that.
13812 </description>
13813 </action>
13814
13815 <action name="StatusArea_Display_Default_ShowSettings">
13816 <owner>bruthig@chromium.org</owner>
13817 <owner>tbuckley@chromium.org</owner>
13818 <description>
13819 Counts the number of times the display settings is opened by the user
13820 selecting the display row in the system menu.
tdanderson 2016/07/08 18:37:50 wording: "number of times the display settings are
bruthig 2016/07/08 21:11:17 Done.
13821 </description>
13822 </action>
13823
13824 <action name="StatusArea_Display_Notification_Created">
13825 <owner>bruthig@chromium.org</owner>
13826 <owner>tbuckley@chromium.org</owner>
13827 <description>
13828 Counts the number of times a new display notification is created.
tdanderson 2016/07/08 18:37:50 nit: specify this is within the notifications cent
bruthig 2016/07/08 21:11:17 Done.
13829 </description>
13830 </action>
13831
13832 <action name="StatusArea_Display_Notification_Selected">
13833 <owner>bruthig@chromium.org</owner>
13834 <owner>tbuckley@chromium.org</owner>
13835 <description>
13836 Counts the number of times the user selects the display notification. This
13837 action does not always open the display settings. Use the
13838 StatusArea_Display_Notification_Show_Settings metric for that. Note these
13839 notifications are managed by the system menu and not the general
13840 notification center.
13841 </description>
13842 </action>
13843
13844 <action name="StatusArea_Display_Notification_Show_Settings">
13845 <owner>bruthig@chromium.org</owner>
13846 <owner>tbuckley@chromium.org</owner>
13847 <description>
13848 Counts the number of times the display settings is opened by the user
13849 selecting the display notification. Note these notifications are managed by
13850 the system menu and not the general notification center.
tdanderson 2016/07/08 18:37:50 This is actually part of the notifications center
bruthig 2016/07/08 21:11:17 Done.
13851 </description>
13852 </action>
13853
13805 <action name="StatusArea_Drive_CancelOperation"> 13854 <action name="StatusArea_Drive_CancelOperation">
13806 <owner>Please list the metric's owners. Add more owner tags as needed.</owner> 13855 <owner>Please list the metric's owners. Add more owner tags as needed.</owner>
13807 <description>Please enter the description of this user action.</description> 13856 <description>Please enter the description of this user action.</description>
13808 </action> 13857 </action>
13809 13858
13810 <action name="StatusArea_Drive_Detailed"> 13859 <action name="StatusArea_Drive_Detailed">
13811 <owner>Please list the metric's owners. Add more owner tags as needed.</owner> 13860 <owner>Please list the metric's owners. Add more owner tags as needed.</owner>
13812 <description>Please enter the description of this user action.</description> 13861 <description>Please enter the description of this user action.</description>
13813 </action> 13862 </action>
13814 13863
(...skipping 1151 matching lines...) Expand 10 before | Expand all | Expand 10 after
14966 <action name="webapps.AddShortcut.Manifest"> 15015 <action name="webapps.AddShortcut.Manifest">
14967 <owner>mlamouri@chromium.org</owner> 15016 <owner>mlamouri@chromium.org</owner>
14968 <description> 15017 <description>
14969 Shortcut added to the homescreen with a valid Manifest. This action will be 15018 Shortcut added to the homescreen with a valid Manifest. This action will be
14970 recorded in addition to AppShortcut, AppShortcutApple and Bookmark actions 15019 recorded in addition to AppShortcut, AppShortcutApple and Bookmark actions
14971 to keep a trend of whether the webapp also add meta tags. 15020 to keep a trend of whether the webapp also add meta tags.
14972 </description> 15021 </description>
14973 </action> 15022 </action>
14974 15023
14975 </actions> 15024 </actions>
OLDNEW
« ash/metrics/user_metrics_recorder.cc ('K') | « ash/system/chromeos/tray_display.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698