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

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

Side-by-side diff isn't available for this file because of its large size.
Issue 2137483003: Add UMA metrics for root scroller intervention to track forcing passive breakage. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Add ability to test histograms from layout tests 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:
Download patch
Index: tools/metrics/histograms/histograms.xml
diff --git a/tools/metrics/histograms/histograms.xml b/tools/metrics/histograms/histograms.xml
index 34d789c3cd1626a02af2bd255a6264a2dd5b4b5e..eacf667a32594f4557372af6635156d1369e3b11 100644
--- a/tools/metrics/histograms/histograms.xml
+++ b/tools/metrics/histograms/histograms.xml
@@ -12976,6 +12976,16 @@ http://cs/file:chrome/histograms.xml - but prefer this file for new entries.
<summary>Time to request a timestamp from the X server.</summary>
</histogram>
+<histogram name="Event.PassiveForcedEventDispatchBreakage"
Rick Byers 2016/07/11 14:41:52 nit: can we call this PassiveForcedEventDispatchCa
dtapuska 2016/07/11 15:46:05 Done.
+ enum="PassiveForcedListenerResultType">
+ <owner>dtapuska@chromium.org</owner>
+ <summary>
+ Counts the number of event listener invocations that were forced to be
+ passive due to interventions and whether the invocation of the listener
+ called prevent default or not.
+ </summary>
+</histogram>
+
<histogram name="Event.PassiveListeners" enum="EventResultType">
<owner>dtapuska@chromium.org</owner>
<summary>
@@ -85191,6 +85201,11 @@ To add a new entry, add it with any value and run test to compute valid value.
<int value="3" label="Cookie contains both control chars and is invalid"/>
</enum>
+<enum name="PassiveForcedListenerResultType" type="int">
+ <int value="0" label="PreventDefaultNotCalled"/>
+ <int value="1" label="DocumentLevelTouchPreventDefaultCalled"/>
+</enum>
+
<enum name="PasswordBubbleDisplayDisposition" type="int">
<int value="0" label="Opened automatically / Offering a password to save"/>
<int value="1" label="Opened manually / Offering a password to save"/>

Powered by Google App Engine
This is Rietveld 408576698