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

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

Issue 2271913002: [Downloads] Remove externally deleted items from downloads history (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: dfalcantara@ review changes Created 4 years, 3 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/browser/android/download/download_manager_service.cc ('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. 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 903 matching lines...) Expand 10 before | Expand all | Expand 10 after
914 </description> 914 </description>
915 </action> 915 </action>
916 916
917 <action name="AlertIndicatorButton_Unmute"> 917 <action name="AlertIndicatorButton_Unmute">
918 <owner>miu@chromium.org</owner> 918 <owner>miu@chromium.org</owner>
919 <description> 919 <description>
920 User clicked the tab alert indicator button to unmute the tab. 920 User clicked the tab alert indicator button to unmute the tab.
921 </description> 921 </description>
922 </action> 922 </action>
923 923
924 <action name="Android.DownloadManager.CheckForExternallyRemovedItems">
925 <owner>dfalcantara@chromium.org</owner>
926 <owner>twellington@chromium.org</owner>
927 <owner>ianwen@chromium.org</owner>
928 <description>
929 A request was issued to check the file system for download items that were
930 externally deleted e.g. through a third-party download manager.
931 </description>
932 </action>
933
924 <action name="Android.DownloadManager.Delete"> 934 <action name="Android.DownloadManager.Delete">
925 <owner>dfalcantara@chromium.org</owner> 935 <owner>dfalcantara@chromium.org</owner>
926 <owner>twellington@chromium.org</owner> 936 <owner>twellington@chromium.org</owner>
927 <owner>ianwen@chromium.org</owner> 937 <owner>ianwen@chromium.org</owner>
928 <description>User deleted one or more download items.</description> 938 <description>User deleted one or more download items.</description>
929 </action> 939 </action>
930 940
941 <action name="Android.DownloadManager.Item.ExternallyDeleted">
942 <owner>dfalcantara@chromium.org</owner>
943 <owner>twellington@chromium.org</owner>
944 <owner>ianwen@chromium.org</owner>
945 <description>
946 A download tracked by the Chrome download service was externally deleted
947 e.g. through a third-party download manager.
948 </description>
949 </action>
950
931 <action name="Android.DownloadManager.OpenDrawer"> 951 <action name="Android.DownloadManager.OpenDrawer">
932 <owner>dfalcantara@chromium.org</owner> 952 <owner>dfalcantara@chromium.org</owner>
933 <owner>twellington@chromium.org</owner> 953 <owner>twellington@chromium.org</owner>
934 <owner>ianwen@chromium.org</owner> 954 <owner>ianwen@chromium.org</owner>
935 <description> 955 <description>
936 User opened the navigation drawer in Chrome's download manager. 956 User opened the navigation drawer in Chrome's download manager.
937 </description> 957 </description>
938 </action> 958 </action>
939 959
940 <action name="Android.DownloadManager.Share.Deleted"> 960 <action name="Android.DownloadManager.SelectionEstablished">
941 <owner>dfalcantara@chromium.org</owner> 961 <owner>dfalcantara@chromium.org</owner>
942 <owner>twellington@chromium.org</owner> 962 <owner>twellington@chromium.org</owner>
943 <owner>ianwen@chromium.org</owner> 963 <owner>ianwen@chromium.org</owner>
944 <description> 964 <description>
945 User tapped on the share button with only externally deleted download items 965 User established a long-press selection in Chrome's download manager.
946 selected.
947 </description> 966 </description>
948 </action> 967 </action>
949 968
950 <action name="Android.LauncherShortcut.NewIncognitoTab"> 969 <action name="Android.LauncherShortcut.NewIncognitoTab">
951 <owner>twellington@chromium.org</owner> 970 <owner>twellington@chromium.org</owner>
952 <description> 971 <description>
953 User tapped on the 'New Incognito Tab' launcher shortcut option. 972 User tapped on the 'New Incognito Tab' launcher shortcut option.
954 </description> 973 </description>
955 </action> 974 </action>
956 975
(...skipping 14610 matching lines...) Expand 10 before | Expand all | Expand 10 after
15567 <action name="webapps.AddShortcut.Manifest"> 15586 <action name="webapps.AddShortcut.Manifest">
15568 <owner>mlamouri@chromium.org</owner> 15587 <owner>mlamouri@chromium.org</owner>
15569 <description> 15588 <description>
15570 Shortcut added to the homescreen with a valid Manifest. This action will be 15589 Shortcut added to the homescreen with a valid Manifest. This action will be
15571 recorded in addition to AppShortcut, AppShortcutApple and Bookmark actions 15590 recorded in addition to AppShortcut, AppShortcutApple and Bookmark actions
15572 to keep a trend of whether the webapp also add meta tags. 15591 to keep a trend of whether the webapp also add meta tags.
15573 </description> 15592 </description>
15574 </action> 15593 </action>
15575 15594
15576 </actions> 15595 </actions>
OLDNEW
« no previous file with comments | « chrome/browser/android/download/download_manager_service.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698