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

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

Side-by-side diff isn't available for this file because of its large size.
Issue 74523002: [Downloads] Update origin info after each response. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Better descriptions. Created 7 years 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
« no previous file with comments | « net/tools/testserver/testserver.py ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/metrics/histograms/histograms.xml
diff --git a/tools/metrics/histograms/histograms.xml b/tools/metrics/histograms/histograms.xml
index fdfedefe751e97abf1dc02c787c2aa40074701a2..11f1cb11798bcf3919cc35e25a76bc4973dcdb5c 100644
--- a/tools/metrics/histograms/histograms.xml
+++ b/tools/metrics/histograms/histograms.xml
@@ -3185,6 +3185,22 @@ other types of suffix sets.
</summary>
</histogram>
+<histogram name="Download.OriginStateOnFullResumption"
+ enum="DownloadOriginStateOnResumption">
+ <summary>
+ Changes observed when a response is received for a full download resumption
+ request.
+ </summary>
+</histogram>
+
+<histogram name="Download.OriginStateOnPartialResumption"
+ enum="DownloadOriginStateOnResumption">
+ <summary>
+ Changes observed when a response is received for a partial (byte-range)
+ download resumption request.
+ </summary>
+</histogram>
+
<histogram name="Download.PotentialBandwidth" units="Bytes/second">
<summary>
The maximum bandwidth (per read) that Chrome could have provided for the
@@ -22528,6 +22544,17 @@ other types of suffix sets.
<int value="2" label="Opened with plaform handler by user choice"/>
</enum>
+<enum name="DownloadOriginStateOnResumption" type="int">
+ <int value="0" label="No changes"/>
+ <int value="1" label="New redirects"/>
+ <int value="2" label="New validators"/>
+ <int value="3" label="New redirects + validators"/>
+ <int value="4" label="New Content-Disposition"/>
+ <int value="5" label="New redirects + Content-Disposition"/>
+ <int value="6" label="New validators + Content-Disposition"/>
+ <int value="7" label="New redirects + validators + Content-Disposition"/>
+</enum>
+
<enum name="DownloadSavePackageEvent" type="int">
<int value="0" label="Started"/>
<int value="1" label="Cancelled"/>
« no previous file with comments | « net/tools/testserver/testserver.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698