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

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

Issue 2218963003: Added metrics for background video playback. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Added PowerObserver 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:
View unified diff | Download patch
OLDNEW
1 <!-- 1 <!--
2 Copyright 2014 The Chromium Authors. All rights reserved. 2 Copyright 2014 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 a comprehensive list of Chrome user actions along with the owner 8 This file is a comprehensive list of Chrome user actions along with the owner
9 and description for each user action. A user action should be tied to an actual 9 and description for each user action. A user action should be tied to an actual
10 action taken by a user. It should be logged immediately after a user takes the 10 action taken by a user. It should be logged immediately after a user takes the
(...skipping 8478 matching lines...) Expand 10 before | Expand all | Expand 10 after
8489 </description> 8489 </description>
8490 </action> 8490 </action>
8491 8491
8492 <action name="Media.Controls.VolumeChangeEnd"> 8492 <action name="Media.Controls.VolumeChangeEnd">
8493 <owner>mlamouri@chromium.org</owner> 8493 <owner>mlamouri@chromium.org</owner>
8494 <description> 8494 <description>
8495 The user stopped interacting with the control's volume slider. 8495 The user stopped interacting with the control's volume slider.
8496 </description> 8496 </description>
8497 </action> 8497 </action>
8498 8498
8499 <action name="Media.Hidden">
Ilya Sherman 2016/08/08 22:09:10 Is this always a user-initiated action, or can it
whywhat 2016/08/11 21:51:04 Rewrote the description. We're trying to only trac
8500 <owner>avayvod@chromium.org</owner>
8501 <description>A renderer media delegate is notified it's hidden.</description>
mlamouri (slow - plz ping) 2016/08/08 13:19:31 I'm not sure "renderer media delegate" is the righ
whywhat 2016/08/11 21:51:04 Done.
8502 </action>
8503
8504 <action name="Media.RemoteControls.Pause">
8505 <owner>avayvod@chromium.org</owner>
8506 <description>Media delegate is requested to pause media.</description>
mlamouri (slow - plz ping) 2016/08/08 13:19:31 Same as above. It's very unclear what "Media deleg
whywhat 2016/08/11 21:51:04 Done.
8507 </action>
8508
8509 <action name="Media.RemoteControls.Play">
8510 <owner>avayvod@chromium.org</owner>
8511 <description>Media delegate is requested to resume media.</description>
8512 </action>
8513
8514 <action name="Media.Session.BackgroundResume">
8515 <owner>avayvod@chromium.org</owner>
8516 <description>
8517 Background video playback started for the render frame.
8518 </description>
8519 </action>
8520
8521 <action name="Media.Session.BackgroundSuspend">
8522 <owner>avayvod@chromium.org</owner>
8523 <description>
8524 Background video playback stopped for the render frame.
8525 </description>
8526 </action>
8527
8528 <action name="Media.Shown">
8529 <owner>avayvod@chromium.org</owner>
8530 <description>A renderer media delegate is notified it's shown.</description>
8531 </action>
8532
8499 <action name="MediaContextMenu_Controls"> 8533 <action name="MediaContextMenu_Controls">
8500 <owner>Please list the metric's owners. Add more owner tags as needed.</owner> 8534 <owner>Please list the metric's owners. Add more owner tags as needed.</owner>
8501 <description>Please enter the description of this user action.</description> 8535 <description>Please enter the description of this user action.</description>
8502 </action> 8536 </action>
8503 8537
8504 <action name="MediaContextMenu_Loop"> 8538 <action name="MediaContextMenu_Loop">
8505 <owner>Please list the metric's owners. Add more owner tags as needed.</owner> 8539 <owner>Please list the metric's owners. Add more owner tags as needed.</owner>
8506 <description>Please enter the description of this user action.</description> 8540 <description>Please enter the description of this user action.</description>
8507 </action> 8541 </action>
8508 8542
(...skipping 6824 matching lines...) Expand 10 before | Expand all | Expand 10 after
15333 <action name="webapps.AddShortcut.Manifest"> 15367 <action name="webapps.AddShortcut.Manifest">
15334 <owner>mlamouri@chromium.org</owner> 15368 <owner>mlamouri@chromium.org</owner>
15335 <description> 15369 <description>
15336 Shortcut added to the homescreen with a valid Manifest. This action will be 15370 Shortcut added to the homescreen with a valid Manifest. This action will be
15337 recorded in addition to AppShortcut, AppShortcutApple and Bookmark actions 15371 recorded in addition to AppShortcut, AppShortcutApple and Bookmark actions
15338 to keep a trend of whether the webapp also add meta tags. 15372 to keep a trend of whether the webapp also add meta tags.
15339 </description> 15373 </description>
15340 </action> 15374 </action>
15341 15375
15342 </actions> 15376 </actions>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698