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

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

Issue 373153003: Bypass data reduction proxy when using VPN (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Addressed comments from marq and Ilya Created 6 years, 5 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 92633c2addce32986ea90b051fa7ce9e593d6f3c..3b218f99a61e6f4b9fdaf257c601dd0bdcf9f548 100644
--- a/tools/metrics/histograms/histograms.xml
+++ b/tools/metrics/histograms/histograms.xml
@@ -3023,6 +3023,16 @@ Therefore, the affected-histogram name has to have at least one dot in it.
</summary>
</histogram>
+<histogram name="DataReductionProxy.NetworkChangeEvents"
+ enum="DataReductionProxyNetworkChangeEvent">
+ <owner>bengr@chromium.org</owner>
+ <owner>megjablon@chromium.org</owner>
+ <summary>
+ Counts the number of times various events occur when the data reduction
+ proxy is enabled and the IP address of the client changes.
+ </summary>
+</histogram>
+
<histogram name="DataReductionProxy.ProbeURL"
enum="DataReductionProxyProbeURLFetchResult">
<owner>bengr@chromium.org</owner>
@@ -36071,6 +36081,11 @@ Therefore, the affected-histogram name has to have at least one dot in it.
<int value="10" label="Bypass due to any network error"/>
</enum>
+<enum name="DataReductionProxyNetworkChangeEvent" type="int">
+ <int value="0" label="IP Address Change"/>
+ <int value="1" label="Proxy disabled on VPN"/>
+</enum>
+
<enum name="DataReductionProxyProbeURLFetchResult" type="int">
<int value="0" label="Internet disconnected"/>
<int value="1" label="Probe failed, proxy disabled"/>

Powered by Google App Engine
This is Rietveld 408576698