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

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

Side-by-side diff isn't available for this file because of its large size.
Issue 1145513004: Record UMA when googlezip proxies are removed from the proxy config. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Added comment about bitwise ORs Created 5 years, 7 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 7a26d3b2e6785cda654ae9297d2504155e8b8f18..3843702fd5add03f92a6b2ee3d2555b209079224 100644
--- a/tools/metrics/histograms/histograms.xml
+++ b/tools/metrics/histograms/histograms.xml
@@ -20172,6 +20172,15 @@ Therefore, the affected-histogram name has to have at least one dot in it.
</summary>
</histogram>
+<histogram name="Net.PrefProxyConfig.GooglezipProxyRemovalResult"
+ enum="GooglezipProxyRemovalResult">
+ <owner>sclittle@chromium.org</owner>
+ <summary>
+ Records whether or not a *.googlezip.net Data Reduction Proxy was removed
+ from the effective proxy configuration when a proxy reconfiguration occurs.
+ </summary>
+</histogram>
+
<histogram name="Net.Priority_High_Latency" units="milliseconds">
<obsolete>
Replaced by Net.Priority_High_Latency_b.
@@ -54433,6 +54442,11 @@ Therefore, the affected-histogram name has to have at least one dot in it.
<int value="5" label="UPGRADE_ERROR"/>
</enum>
+<enum name="GooglezipProxyRemovalResult" type="int">
+ <int value="0" label="No *.googlezip.net proxies found"/>
eroman 2015/05/14 22:20:15 I think it is more typical to have the enum value,
sclittle 2015/05/15 02:29:42 I've removed the enum, and it's just reporting the
+ <int value="1" label="At least one *.googlezip.net proxy found and removed"/>
+</enum>
+
<enum name="GzipEncodingFixupResult" type="int">
<int value="0" label="Gzip encoding left as-is"/>
<int value="1" label="MIME type indicated GZIP content"/>

Powered by Google App Engine
This is Rietveld 408576698