Chromium Code Reviews| Index: tools/metrics/histograms/histograms.xml |
| diff --git a/tools/metrics/histograms/histograms.xml b/tools/metrics/histograms/histograms.xml |
| index 2ee946956bd4cbd17c65d7c0e6c596d2eabd232d..c6654293107a040b73f74eca54c735ae9a8cc9a5 100644 |
| --- a/tools/metrics/histograms/histograms.xml |
| +++ b/tools/metrics/histograms/histograms.xml |
| @@ -10227,6 +10227,22 @@ other types of suffix sets. |
| </summary> |
| </histogram> |
| +<histogram name="Notifications.Actions" enum="NotificationActionType"> |
| + <summary> |
| + The actions taken on notifications, recorded every time they happen. This |
| + histogram will record every single event that happens separately. |
| + </summary> |
| +</histogram> |
| + |
| +<histogram name="Notifications.PerNotificationActions" |
| + enum="NotificationActionType"> |
| + <summary> |
| + The actions taken on notifications, recorded once per notification, when it |
| + is closed. This differs from the RawActions type in that multiple events of |
|
Ilya Sherman
2013/09/23 21:48:01
nit: "RawActions type" -> "Actions histogram"
dewittj
2013/09/23 21:51:56
Done.
|
| + the same type on a single notification will only record a single UMA event. |
| + </summary> |
| +</histogram> |
| + |
| <histogram name="ntp.searchurls.total"> |
| <summary>TBD</summary> |
| </histogram> |
| @@ -23676,6 +23692,17 @@ other types of suffix sets. |
| <int value="4" label="User dismissed the promo"/> |
| </enum> |
| +<enum name="NotificationActionType" type="int"> |
| + <int value="0" label="Unknown"/> |
| + <int value="1" label="Notification added"/> |
| + <int value="2" label="Notificaiton updated"/> |
| + <int value="3" label="Notification clicked"/> |
| + <int value="4" label="Notification button clicked"/> |
| + <int value="5" label="Notification displayed"/> |
| + <int value="6" label="Notification closed by user"/> |
| + <int value="7" label="Notification closed by system"/> |
| +</enum> |
| + |
| <enum name="NtpFollowAction" type="int"> |
| <int value="0" label="PAGE_TRANSITION_LINK"/> |
| <int value="1" label="PAGE_TRANSITION_TYPED"/> |