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

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

Issue 1093923002: Track input latency for both begin and end of GPU swap in UMAs (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Yufeng's comments Created 5 years, 8 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
Index: tools/metrics/histograms/histograms.xml
diff --git a/tools/metrics/histograms/histograms.xml b/tools/metrics/histograms/histograms.xml
index b87833f82d8aee66b249a57c742aa47d63768e04..d7c8785edaa3e7672559dd881d1f835c2d402862 100644
--- a/tools/metrics/histograms/histograms.xml
+++ b/tools/metrics/histograms/histograms.xml
@@ -8140,6 +8140,9 @@ Therefore, the affected-histogram name has to have at least one dot in it.
<histogram name="Event.Latency.TouchToFirstScrollUpdateSwap"
units="microseconds">
<owner>rbyers@chromium.org</owner>
+ <obsolete>
+ Replaced by Event.Latency.TouchToFirstScrollUpdateSwapBegin.
+ </obsolete>
<summary>
Time between initial creation of a touch event and the frame swap caused by
by the generated ScrollUpdate gesture event if that ScrollUpdate is the
@@ -8148,8 +8151,22 @@ Therefore, the affected-histogram name has to have at least one dot in it.
</summary>
</histogram>
+<histogram name="Event.Latency.TouchToFirstScrollUpdateSwapBegin"
+ units="microseconds">
+ <owner>rbyers@chromium.org</owner>
+ <summary>
+ Time between initial creation of a touch event and the start of the frame
+ swap on the GPU service caused by the generated ScrollUpdate gesture event.
+ if that ScrollUpdate is the first such event in a given scroll gesture event
+ sequence. If no swap was induced by the event, no recording is made.
+ </summary>
+</histogram>
+
<histogram name="Event.Latency.TouchToScrollUpdateSwap" units="microseconds">
<owner>rbyers@chromium.org</owner>
+ <obsolete>
+ Replaced by Event.Latency.TouchToScrollUpdateSwapBegin.
+ </obsolete>
<summary>
Time between initial creation of a touch event and the frame swap caused by
by the generated ScrollUpdate gesture event. If no swap was induced by the
@@ -8157,6 +8174,16 @@ Therefore, the affected-histogram name has to have at least one dot in it.
</summary>
</histogram>
+<histogram name="Event.Latency.TouchToScrollUpdateSwapBegin"
+ units="microseconds">
+ <owner>rbyers@chromium.org</owner>
+ <summary>
+ Time between initial creation of a touch event and start of the frame swap
+ on the GPU service caused by the generated ScrollUpdate gesture event. If no
+ swap was induced by the event, no recording is made.
+ </summary>
+</histogram>
+
<histogram name="Event.SingleTapType" enum="TapDelayType">
<owner>rbyers@chromium.org</owner>
<summary>

Powered by Google App Engine
This is Rietveld 408576698