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

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

Issue 2429953002: Implement compositor thread VSync aligned event queue (Closed)
Patch Set: tdresser's review: Move CanCoalesce/Coalesce; Test queueing time Created 4 years, 1 month 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 901af086a1fe499284aef6bca38b20847c99bb49..9d02d094bf3ad19e62d3293032f5f9f403f077ff 100644
--- a/tools/metrics/histograms/histograms.xml
+++ b/tools/metrics/histograms/histograms.xml
@@ -13461,6 +13461,47 @@ http://cs/file:chrome/histograms.xml - but prefer this file for new entries.
</summary>
</histogram>
+<histogram name="Event.CompositorThreadEventQueue.CoalescedCount"
+ units="events">
+ <owner>chongz@chromium.org</owner>
+ <summary>
+ Number of continuous gesture events (GestureScrollUpdate,
+ GesturePinchUpdate) coalesced inside the compositor thread event queue per
+ event. This field is recorded just before the event is processed on the
+ compositor thread.
+ </summary>
+</histogram>
+
+<histogram name="Event.CompositorThreadEventQueue.Continuous.HeadQueueingTime"
+ units="microseconds">
+ <owner>chongz@chromium.org</owner>
+ <summary>
+ Time between the first event in a coalesced continuous gesture events group
+ (GestureScrollUpdate, GesturePinchUpdate) and when it was processed on the
+ compositor thread.
+ </summary>
+</histogram>
+
+<histogram name="Event.CompositorThreadEventQueue.Continuous.TailQueueingTime"
+ units="microseconds">
+ <owner>chongz@chromium.org</owner>
+ <summary>
+ Time between the last event in a coalesced continuous gesture events group
+ (GestureScrollUpdate, GesturePinchUpdate) and when it was processed on the
+ compositor thread.
+ </summary>
+</histogram>
+
+<histogram name="Event.CompositorThreadEventQueue.NonContinuous.QueueingTime"
+ units="microseconds">
+ <owner>chongz@chromium.org</owner>
+ <summary>
+ Time between when a non-continuous gesture event (GestureScrollStart/End,
+ GesturePinchStart/End) was placed into the queue and when it was processed
+ on the compositor thread.
+ </summary>
+</histogram>
+
<histogram name="Event.DownEventCount.PerDestination"
enum="DownEventDestination">
<owner>xiaoyinh@chromium.org</owner>

Powered by Google App Engine
This is Rietveld 408576698