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

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: dtapuska&enne's review: Call |Now()| once per loop; Chromium style; Remove parameterized test 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
« no previous file with comments | « content/renderer/input/main_thread_event_queue_unittest.cc ('k') | ui/events/blink/BUILD.gn » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/metrics/histograms/histograms.xml
diff --git a/tools/metrics/histograms/histograms.xml b/tools/metrics/histograms/histograms.xml
index 7a8821eb2020ff0e2ca1b2ec8629647b5964102e..146341f464e65581e947ac558137439631479691 100644
--- a/tools/metrics/histograms/histograms.xml
+++ b/tools/metrics/histograms/histograms.xml
@@ -13496,6 +13496,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>
« no previous file with comments | « content/renderer/input/main_thread_event_queue_unittest.cc ('k') | ui/events/blink/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698