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

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

Issue 1861733002: Add touch drag UMA latency metric. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix everything. Created 4 years, 7 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/browser/renderer_host/render_widget_host_impl.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 90ecb44208f019eb44c1e691e92a0ae0a7c8b5c5..08fba7273908692eddcc95daa8a51103ca9cdb07 100644
--- a/tools/metrics/histograms/histograms.xml
+++ b/tools/metrics/histograms/histograms.xml
@@ -11862,6 +11862,24 @@ http://cs/file:chrome/histograms.xml - but prefer this file for new entries.
</summary>
</histogram>
+<histogram name="Event.Latency.BlockingTime.TouchMoveDefaultAllowed"
+ units="microseconds">
+ <owner>tdresser@chromium.org</owner>
+ <summary>
+ Time between the renderer main thread receiving a touchmove event and acking
+ it, for events which were not preventDefaulted.
+ </summary>
+</histogram>
+
+<histogram name="Event.Latency.BlockingTime.TouchMoveDefaultPrevented"
+ units="microseconds">
+ <owner>tdresser@chromium.org</owner>
+ <summary>
+ Time between the renderer main thread receiving a touchmove event and acking
+ it, for events which were preventDefaulted.
+ </summary>
+</histogram>
+
<histogram name="Event.Latency.Browser" units="microseconds">
<owner>rbyers@chromium.org</owner>
<summary>
@@ -12193,6 +12211,26 @@ http://cs/file:chrome/histograms.xml - but prefer this file for new entries.
</summary>
</histogram>
+<histogram name="Event.Latency.QueueingTime.TouchMoveDefaultAllowed"
+ units="microseconds">
+ <owner>tdresser@chromium.org</owner>
+ <summary>
+ Time between sending a touchmove event to the renderer main thread and when
+ the renderer begins to process that event, for events which were not
+ preventDefaulted.
+ </summary>
+</histogram>
+
+<histogram name="Event.Latency.QueueingTime.TouchMoveDefaultPrevented"
+ units="microseconds">
+ <owner>tdresser@chromium.org</owner>
+ <summary>
+ Time between sending a touchmove event to the renderer main thread and when
+ the renderer begins to process that event, for events which were
+ preventDefaulted.
+ </summary>
+</histogram>
+
<histogram name="Event.Latency.Renderer" units="microseconds">
<owner>rbyers@chromium.org</owner>
<summary>
« no previous file with comments | « content/browser/renderer_host/render_widget_host_impl.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698