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

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

Issue 2273703002: Force events to be non blocking if main thread is unresponsive. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 4 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 3cd9258e9ba5a60db72631c51e44c05e0b22a802..a2e2034bf4d0b9c88d41b628a6150346a5623fe8 100644
--- a/tools/metrics/histograms/histograms.xml
+++ b/tools/metrics/histograms/histograms.xml
@@ -13362,10 +13362,22 @@ http://cs/file:chrome/histograms.xml - but prefer this file for new entries.
units="microseconds">
<owner>dtapuska@chromium.org</owner>
<summary>
- Time between when a forced non-blocking touchstart or first touchmove event
- per scroll was generated and the event processed during fling. This
- histogram tracks the benefit of forcing non-blocking events listeners during
- fling.
+ Time between when a touchstart or first touchmove event per scroll was
+ generated and the event processed, for events which were forced non-blocking
+ since they occurred during fling. This histogram tracks the benefit of
+ forcing events non-blocking during fling.
+ </summary>
+</histogram>
+
+<histogram
+ name="Event.PassiveListeners.ForcedNonBlockingLatencyDueToUnresponsiveMainThread"
+ units="microseconds">
+ <owner>tdresser@chromium.org</owner>
+ <summary>
+ Time between when a touchstart or first touchmove event per scroll was
+ generated and the event processed, for events which were forced non-blocking
+ since they occurred while the main thread was unresponsive. This histogram
+ tracks the benefit of forcing events non-blocking during fling.
</summary>
</histogram>
@@ -75356,7 +75368,8 @@ http://cs/file:chrome/histograms.xml - but prefer this file for new entries.
<int value="2" label="Suppressed"/>
<int value="3" label="Cancelable and not canceled"/>
<int value="4" label="Cancelable and canceled"/>
- <int value="5" label="Forced Non-Blocking"/>
+ <int value="5" label="Forced Non-Blocking Due to Fling"/>
+ <int value="6" label="Forced Non-Blocking Due to Unresponsive Main Thread"/>
</enum>
<enum name="EventTimestampValidity" type="int">

Powered by Google App Engine
This is Rietveld 408576698