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

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

Side-by-side diff isn't available for this file because of its large size.
Issue 2058593002: Add UMA for studying download cancellation reasons (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 6 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 8353983edbd91f47590efa597200b7f9ba0b5282..7eaadf26a475f91520db11ad5ae7f0a23bc1015d 100644
--- a/tools/metrics/histograms/histograms.xml
+++ b/tools/metrics/histograms/histograms.xml
@@ -23426,6 +23426,11 @@ http://cs/file:chrome/histograms.xml - but prefer this file for new entries.
</summary>
</histogram>
+<histogram name="MobileDownload.CancelReason" enum="MobileDownloadCancelReason">
+ <owner>qinmin@chromium.org</owner>
+ <summary>Android: Records the reason that a download is canceled.</summary>
Ilya Sherman 2016/06/10 21:20:43 I'd recommend also including in this histogram a b
+</histogram>
+
<histogram name="MobileDownload.DownloadResumption"
enum="MobileDownloadResumption">
<owner>qinmin@chromium.org</owner>
@@ -80504,6 +80509,13 @@ To add a new entry, add it with any value and run test to compute valid value.
<int value="1" label="Failure"/>
</enum>
+<enum name="MobileDownloadCancelReason" type="int">
+ <int value="0" label="Click on the cancel button"/>
+ <int value="1" label="Notification dismissed"/>
+ <int value="2" label="Overwrite infobar dismissed"/>
+ <int value="3" label="No storage permission"/>
+</enum>
+
<enum name="MobileDownloadInterceptFailureReason" type="int">
<int value="0" label="No failure"/>
<int value="1" label="Empty url"/>

Powered by Google App Engine
This is Rietveld 408576698