Chromium Code Reviews| 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"/> |