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

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

Side-by-side diff isn't available for this file because of its large size.
Issue 2429953002: Implement compositor thread VSync aligned event queue (Closed)
Patch Set: tdresser's review: Rename UMA entries and nits 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 02ca11dc736660b4d3a23d6c409417e285b8a9c9..def40552dca5f7e9296fcd9c7d3474e9d758cf04 100644
--- a/tools/metrics/histograms/histograms.xml
+++ b/tools/metrics/histograms/histograms.xml
@@ -13428,6 +13428,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