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

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

Side-by-side diff isn't available for this file because of its large size.
Issue 1780043002: Add download button to MediaDocument on Android. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: use base::Feature instead of switches Created 4 years, 8 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:
Download patch
Index: tools/metrics/histograms/histograms.xml
diff --git a/tools/metrics/histograms/histograms.xml b/tools/metrics/histograms/histograms.xml
index 51501ce0b3d0138ae8885287d1040adc518df992..35ae2525ab532d842529b73ec3c651a7a4bb0078 100644
--- a/tools/metrics/histograms/histograms.xml
+++ b/tools/metrics/histograms/histograms.xml
@@ -3284,6 +3284,14 @@ http://cs/file:chrome/histograms.xml - but prefer this file for new entries.
</summary>
</histogram>
+<histogram name="Blink.MediaDocument.DownloadButton"
+ enum="MediaDocumentDownloadButtonType">
+ <owner>qinmin@chromium.org</owner>
+ <summary>
+ Records how the download button on the MediaDocument is used.
+ </summary>
+</histogram>
+
<histogram name="Blink.MediaElement.Autoplay" enum="MediaElementAutoPlay">
<owner>oysteine@chromium.org</owner>
<summary>
@@ -74659,6 +74667,11 @@ To add a new entry, add it with any value and run test to compute valid value.
<int value="3" label="Not shown"/>
</enum>
+<enum name="MediaDocumentDownloadButtonType" type="int">
+ <int value="0" label="Shown"/>
+ <int value="1" label="Clicked"/>
+</enum>
+
<enum name="MediaElementAutoPlay" type="int">
<int value="0" label="Media element with autoplay seen"/>
<int value="1"

Powered by Google App Engine
This is Rietveld 408576698