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

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

Issue 2166703003: Implement Main Thread RAF Aligned Input (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master_main_thread_queue
Patch Set: Rename NeedsMainFrame to SetNeedsMainFrame and move it to the render_widget 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
« no previous file with comments | « content/renderer/render_widget.cc ('k') | no next file » | 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 d63dafb49c24b2bb1513b58bcd3e87fcdfb30b37..0042c2a05f97c19b3a833c63c50373c190ba710f 100644
--- a/tools/metrics/histograms/histograms.xml
+++ b/tools/metrics/histograms/histograms.xml
@@ -13478,6 +13478,44 @@ 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 per event. This field is recorded just
+ before the event is processed on the main thread.
+ </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>
« no previous file with comments | « content/renderer/render_widget.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698