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

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

Issue 1422193003: UMA for Notification action buttons (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Add comment explaining histogramEnumeration Created 5 years 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 immediatly after a user takes the 10 action taken by a user. It should be logged immediatly after a user takes the
(...skipping 8704 matching lines...) Expand 10 before | Expand all | Expand 10 after
8715 <action name="Notifications.Mute"> 8715 <action name="Notifications.Mute">
8716 <owner>dewittj@chromium.org</owner> 8716 <owner>dewittj@chromium.org</owner>
8717 <description> 8717 <description>
8718 Recorded when a user enables the message center's Do Not Disturb mode. 8718 Recorded when a user enables the message center's Do Not Disturb mode.
8719 </description> 8719 </description>
8720 </action> 8720 </action>
8721 8721
8722 <action name="Notifications.Persistent.Clicked"> 8722 <action name="Notifications.Persistent.Clicked">
8723 <owner>peter@chromium.org</owner> 8723 <owner>peter@chromium.org</owner>
8724 <description> 8724 <description>
8725 Recorded when a persistent notification gets clicked on by the user. 8725 Recorded when the main body of a persistent notification gets clicked on by
8726 the user (does not include action buttons).
8726 </description> 8727 </description>
8727 </action> 8728 </action>
8728 8729
8730 <action name="Notifications.Persistent.ClickedActionButton">
8731 <owner>peter@chromium.org</owner>
8732 <description>
8733 Recorded when one of a persistent notification's action buttons gets clicked
8734 on by the user.
8735 </description>
8736 </action>
8737
8729 <action name="Notifications.Persistent.ClickedWithoutPermission"> 8738 <action name="Notifications.Persistent.ClickedWithoutPermission">
8730 <owner>peter@chromium.org</owner> 8739 <owner>peter@chromium.org</owner>
8731 <description> 8740 <description>
8732 Recorded when a persistent notification gets clicked on by the user, but the 8741 Recorded when a persistent notification gets clicked on by the user, but the
8733 user has revoked notification permission for the origin since it was shown. 8742 user has revoked notification permission for the origin since it was shown.
8734 </description> 8743 </description>
8735 </action> 8744 </action>
8736 8745
8737 <action name="Notifications.Persistent.Closed"> 8746 <action name="Notifications.Persistent.Closed">
8738 <owner>peter@chromium.org</owner> 8747 <owner>peter@chromium.org</owner>
(...skipping 4465 matching lines...) Expand 10 before | Expand all | Expand 10 after
13204 <action name="webapps.AddShortcut.Manifest"> 13213 <action name="webapps.AddShortcut.Manifest">
13205 <owner>mlamouri@chromium.org</owner> 13214 <owner>mlamouri@chromium.org</owner>
13206 <description> 13215 <description>
13207 Shortcut added to the homescreen with a valid Manifest. This action will be 13216 Shortcut added to the homescreen with a valid Manifest. This action will be
13208 recorded in addition to AppShortcut, AppShortcutApple and Bookmark actions 13217 recorded in addition to AppShortcut, AppShortcutApple and Bookmark actions
13209 to keep a trend of whether the webapp also add meta tags. 13218 to keep a trend of whether the webapp also add meta tags.
13210 </description> 13219 </description>
13211 </action> 13220 </action>
13212 13221
13213 </actions> 13222 </actions>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698