Chromium Code Reviews| Index: tools/metrics/histograms/histograms.xml |
| diff --git a/tools/metrics/histograms/histograms.xml b/tools/metrics/histograms/histograms.xml |
| index 8e4483781742d514b4d57b67edfe76a729ff9650..31d56879320879a871557117b28d6e21582a6daa 100644 |
| --- a/tools/metrics/histograms/histograms.xml |
| +++ b/tools/metrics/histograms/histograms.xml |
| @@ -13443,6 +13443,43 @@ 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.MainThreadEventQueue.CoalescedCount" units="events"> |
| + <owner>dtapuska@chromium.org</owner> |
| + <summary> |
| + Number of continuous events (touchmove, mousemove, mousewheel) coalesced |
| + inside the main thread event queue. |
|
Ilya Sherman
2016/08/25 19:34:16
Please document precisely when this is recorded.
dtapuska
2016/08/25 19:57:29
done.
|
| + </summary> |
| +</histogram> |
| + |
| +<histogram name="Event.MainThreadEventQueue.Continuous.FreshnessTime" |
| + units="microseconds"> |
| + <owner>dtapuska@chromium.org</owner> |
| + <summary> |
| + Time between when a continuous event (touchmove, mousemove, mousewheel) was |
| + placed into the queue (or coalesced with another event) and when it was |
| + processed on the main thread. |
| + </summary> |
| +</histogram> |
| + |
| +<histogram name="Event.MainThreadEventQueue.Continuous.QueueingTime" |
| + units="microseconds"> |
| + <owner>dtapuska@chromium.org</owner> |
| + <summary> |
| + Time between when a continuous event (touchmove, mousemove, mousewheel) was |
| + placed into the queue and when it was processed on the main thread. |
| + </summary> |
| +</histogram> |
| + |
| +<histogram name="Event.MainThreadEventQueue.NonContinuous.QueueingTime" |
| + units="microseconds"> |
| + <owner>dtapuska@chromium.org</owner> |
| + <summary> |
| + Time between when a non-continuous event (not touchmove, mousemove, |
| + mousewheel) was placed into the queue and when it was processed on the main |
| + thread. |
| + </summary> |
| +</histogram> |
| + |
| <histogram name="Event.PassiveForcedEventDispatchCancelled" |
| enum="PassiveForcedListenerResultType"> |
| <owner>dtapuska@chromium.org</owner> |