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

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

Side-by-side diff isn't available for this file because of its large size.
Issue 1441683010: Add UMA histogram for save link file type (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 1 month 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
Index: tools/metrics/histograms/histograms.xml
diff --git a/tools/metrics/histograms/histograms.xml b/tools/metrics/histograms/histograms.xml
index 4a6c7feee73b20c156cd83aeac0e0f31eb604f72..255736439fd8566fb70d73cda94d33cddb72762c 100644
--- a/tools/metrics/histograms/histograms.xml
+++ b/tools/metrics/histograms/histograms.xml
@@ -5151,6 +5151,14 @@ http://cs/file:chrome/histograms.xml - but prefer this file for new entries.
</summary>
</histogram>
+<histogram name="ContextMenu.SaveLinkType" enum="ContextMenuSaveLinkType">
+ <owner>qinmin@chromium.org</owner>
+ <summary>
+ Type of the url when user saves the content through the save link context
+ menu.
+ </summary>
+</histogram>
+
<histogram name="ContextMenu.SelectedOption" enum="ContextMenuOption">
<owner>newt@chromium.org</owner>
<summary>The option that the user selected from a context menu.</summary>
@@ -55843,6 +55851,18 @@ http://cs/file:chrome/histograms.xml - but prefer this file for new entries.
<int value="19" label="Share image"/>
</enum>
+<enum name="ContextMenuSaveLinkType" type="int">
+ <summary>
+ The content type when user chooses save link context menu option
+ </summary>
+ <int value="0" label="Text"/>
+ <int value="1" label="Image"/>
+ <int value="2" label="Audio"/>
+ <int value="3" label="Video"/>
+ <int value="4" label="Pdf"/>
+ <int value="5" label="Unkown"/>
Ilya Sherman 2015/11/14 00:22:48 I'd recommend moving this to the front of the list
qinmin 2015/11/17 00:38:56 Done.
+</enum>
+
<enum name="CookieDeletionCause" type="int">
<summary>Reason why a cookie was removed from the cookie store</summary>
<int value="0" label="explicit">

Powered by Google App Engine
This is Rietveld 408576698