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

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

Issue 2831113002: [Suggestions] Add User action UMA for context menu actions (Closed)
Patch Set: "Refactor" Created 3 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:
View unified diff | Download patch
« no previous file with comments | « chrome/android/java/src/org/chromium/chrome/browser/suggestions/TileGroup.java ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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. 9 and description for each user action.
10 10
(...skipping 15788 matching lines...) Expand 10 before | Expand all | Expand 10 after
15799 <action name="Stop"> 15799 <action name="Stop">
15800 <owner>Please list the metric's owners. Add more owner tags as needed.</owner> 15800 <owner>Please list the metric's owners. Add more owner tags as needed.</owner>
15801 <description>Please enter the description of this user action.</description> 15801 <description>Please enter the description of this user action.</description>
15802 </action> 15802 </action>
15803 15803
15804 <action name="Strikethrough"> 15804 <action name="Strikethrough">
15805 <owner>Please list the metric's owners. Add more owner tags as needed.</owner> 15805 <owner>Please list the metric's owners. Add more owner tags as needed.</owner>
15806 <description>Please enter the description of this user action.</description> 15806 <description>Please enter the description of this user action.</description>
15807 </action> 15807 </action>
15808 15808
15809 <action name="Suggestions.ContextMenu.DownloadItem">
15810 <owner>mvanouwerkerk@chromium.org</owner>
15811 <owner>galinap@google.com</owner>
15812 <description>
15813 Android: User used the context menu to download a suggested item.
15814 </description>
15815 </action>
15816
15817 <action name="Suggestions.ContextMenu.OpenItemInIncognitoTab">
15818 <owner>mvanouwerkerk@chromium.org</owner>
15819 <owner>galinap@google.com</owner>
15820 <description>
15821 Android: User used the context menu to open a suggested item in an incognito
15822 tab.
15823 </description>
15824 </action>
15825
15826 <action name="Suggestions.ContextMenu.OpenItemInNewTab">
15827 <owner>mvanouwerkerk@chromium.org</owner>
15828 <owner>galinap@google.com</owner>
15829 <description>
15830 Android: User used the context menu to open a suggested item in a new tab.
15831 </description>
15832 </action>
15833
15834 <action name="Suggestions.ContextMenu.OpenItemInNewWindow">
15835 <owner>mvanouwerkerk@chromium.org</owner>
15836 <owner>galinap@google.com</owner>
15837 <description>
15838 Android: User used the context menu to open a suggested item in a new
15839 window.
15840 </description>
15841 </action>
15842
15843 <action name="Suggestions.ContextMenu.RemoveItem">
15844 <owner>mvanouwerkerk@chromium.org</owner>
15845 <owner>galinap@google.com</owner>
15846 <description>
15847 Android: User used the context menu to remove a suggested item.
15848 </description>
15849 </action>
15850
15851 <action name="Suggestions.ContextMenu.Shown">
15852 <owner>mvanouwerkerk@chromium.org</owner>
15853 <owner>galinap@google.com</owner>
15854 <description>
15855 Android: User opened the context menu on a suggested item.
15856 </description>
15857 </action>
15858
15859 <action name="Suggestions.Tile.RemovalUndone">
15860 <owner>mvanouwerkerk@chromium.org</owner>
15861 <owner>galinap@google.com</owner>
15862 <description>
15863 Android: User tapped the undo button in the snackbar after removing a
15864 suggested item.
15865 </description>
15866 </action>
15867
15809 <action name="SuspiciousExtensionBubbleDismissed"> 15868 <action name="SuspiciousExtensionBubbleDismissed">
15810 <owner>finnur@chromium.org</owner> 15869 <owner>finnur@chromium.org</owner>
15811 <description>Please enter the description of this user action.</description> 15870 <description>Please enter the description of this user action.</description>
15812 </action> 15871 </action>
15813 15872
15814 <action name="SwitchTab_Click"> 15873 <action name="SwitchTab_Click">
15815 <owner>bruthig@chromium.org</owner> 15874 <owner>bruthig@chromium.org</owner>
15816 <owner>tdanderson@chromium.org</owner> 15875 <owner>tdanderson@chromium.org</owner>
15817 <description> 15876 <description>
15818 Recorded when the user switches tabs with a mouse click. This user action is 15877 Recorded when the user switches tabs with a mouse click. This user action is
(...skipping 1049 matching lines...) Expand 10 before | Expand all | Expand 10 after
16868 <action name="webapps.AddShortcut.Manifest"> 16927 <action name="webapps.AddShortcut.Manifest">
16869 <owner>mlamouri@chromium.org</owner> 16928 <owner>mlamouri@chromium.org</owner>
16870 <description> 16929 <description>
16871 Shortcut added to the homescreen with a valid Manifest. This action will be 16930 Shortcut added to the homescreen with a valid Manifest. This action will be
16872 recorded in addition to AppShortcut, AppShortcutApple and Bookmark actions 16931 recorded in addition to AppShortcut, AppShortcutApple and Bookmark actions
16873 to keep a trend of whether the webapp also add meta tags. 16932 to keep a trend of whether the webapp also add meta tags.
16874 </description> 16933 </description>
16875 </action> 16934 </action>
16876 16935
16877 </actions> 16936 </actions>
OLDNEW
« no previous file with comments | « chrome/android/java/src/org/chromium/chrome/browser/suggestions/TileGroup.java ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698