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

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

Issue 23902057: Stats collector for message center. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Re add second histogram Created 7 years, 3 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..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"/>
« 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