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

Unified Diff: tools/metrics/histograms/histograms.xml

Side-by-side diff isn't available for this file because of its large size.
Issue 23902057: Stats collector for message center. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Histograms.xml nit Created 7 years, 2 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:
Download patch
« no previous file with comments | « chrome/chrome_browser.gypi ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/metrics/histograms/histograms.xml
diff --git a/tools/metrics/histograms/histograms.xml b/tools/metrics/histograms/histograms.xml
index 2ee946956bd4cbd17c65d7c0e6c596d2eabd232d..61f44aa5e74bc463e3ce5b937cf7ee86e74693e6 100644
--- a/tools/metrics/histograms/histograms.xml
+++ b/tools/metrics/histograms/histograms.xml
@@ -10227,6 +10227,23 @@ 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 Notifications.Actions histogram in that
+ multiple events of 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 +23693,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"/>
« no previous file with comments | « chrome/chrome_browser.gypi ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698