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

Side by Side Diff: tools/metrics/ukm/ukm.xml

Issue 2924943004: Add ScrollBegin.Touch/Wheel Event to UKM (Closed)
Patch Set: Created 3 years, 6 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:
View unified diff | Download patch
OLDNEW
1 <!-- 1 <!--
2 Copyright 2017 The Chromium Authors. All rights reserved. 2 Copyright 2017 The Chromium Authors. All rights reserved.
3 Use of this source code is governed by a BSD-style license that can be 3 Use of this source code is governed by a BSD-style license that can be
4 found in the LICENSE file. 4 found in the LICENSE file.
5 --> 5 -->
6 6
7 <!-- 7 <!--
8 This file is used to generate a comprehensive list of Chrome UKM metrics 8 This file is used to generate a comprehensive list of Chrome UKM metrics
9 along with a detailed description for each metric. 9 along with a detailed description for each metric.
10 10
(...skipping 251 matching lines...) Expand 10 before | Expand all | Expand 10 after
262 </summary> 262 </summary>
263 <metric name="TimeToScrollUpdateSwapBegin"> 263 <metric name="TimeToScrollUpdateSwapBegin">
264 <summary> 264 <summary>
265 The time in microseconds between the initial creation of a touch event and 265 The time in microseconds between the initial creation of a touch event and
266 the start of the frame swap on the GPU service. If no swap was induced by 266 the start of the frame swap on the GPU service. If no swap was induced by
267 the event, no recording is made. 267 the event, no recording is made.
268 </summary> 268 </summary>
269 </metric> 269 </metric>
270 </event> 270 </event>
271 271
272 <event name="Event.ScrollBegin.Touch">
273 <owner>nzolghadr@chromium.org</owner>
274 <summary>
275 Metrics related to a scroll action caused by the generated ScrollUpdate
Navid Zolghadr 2017/06/09 15:23:59 Somewhere we need to mention this Begin thing. May
eirage 2017/06/09 18:54:05 Done.
276 gesture event.
277 </summary>
278 <metric name="TimeToScrollUpdateSwapBegin">
279 <summary>
280 The time in microseconds between initial creation of a touch event and the
281 start of the frame swap on the GPU service caused by the generated
282 ScrollUpdate gesture event if that ScrollUpdate is the first such event in
283 a given scroll gesture event sequence. If no swap was induced by the
284 event, no recording is made.
285 </summary>
286 </metric>
287 </event>
288
289 <event name="Event.ScrollBegin.Wheel">
290 <owner>nzolghadr@chromium.org</owner>
291 <summary>
292 Metrics related to a scroll action caused by the generated ScrollUpdate
Navid Zolghadr 2017/06/09 15:24:00 Same here.
eirage 2017/06/09 18:54:05 Done.
293 gesture event.
294 </summary>
295 <metric name="TimeToScrollUpdateSwapBegin">
296 <summary>
297 The time in microseconds between the initial creation of a wheel event and
298 the start of the frame swap on the GPU service caused by the generated
299 ScrollUpdate gesture event if that ScrollUpdate is the first such event in
300 a given scroll gesture event sequence. If no swap was induced by the
301 event, no recording is made.
302 </summary>
303 </metric>
304 </event>
305
272 <event name="Media.WatchTime"> 306 <event name="Media.WatchTime">
273 <owner>dalecurtis@chromium.org</owner> 307 <owner>dalecurtis@chromium.org</owner>
274 <summary> 308 <summary>
275 Watch time is defined as the amount of elapsed media time for audio+video 309 Watch time is defined as the amount of elapsed media time for audio+video
276 media aggregated per player instance. A minimum of 7 seconds of unmuted, 310 media aggregated per player instance. A minimum of 7 seconds of unmuted,
277 foreground media must be watched to start watch time monitoring. Watch time 311 foreground media must be watched to start watch time monitoring. Watch time
278 is checked on a regular basis and reported upon one of the stop events 312 is checked on a regular basis and reported upon one of the stop events
279 mentioned below or at player destruction if none occur prior. 313 mentioned below or at player destruction if none occur prior.
280 314
281 Any one of paused, hidden, or muted is sufficient to stop watch time metric 315 Any one of paused, hidden, or muted is sufficient to stop watch time metric
(...skipping 161 matching lines...) Expand 10 before | Expand all | Expand 10 after
443 <metric name="DeclineCount"/> 477 <metric name="DeclineCount"/>
444 <metric name="EventType"/> 478 <metric name="EventType"/>
445 <metric name="IgnoreCount"/> 479 <metric name="IgnoreCount"/>
446 <metric name="RankerResponse"/> 480 <metric name="RankerResponse"/>
447 <metric name="RankerVersion"/> 481 <metric name="RankerVersion"/>
448 <metric name="SourceLanguage"/> 482 <metric name="SourceLanguage"/>
449 <metric name="TargetLanguage"/> 483 <metric name="TargetLanguage"/>
450 </event> 484 </event>
451 485
452 </ukm-configuration> 486 </ukm-configuration>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698