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

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

Side-by-side diff isn't available for this file because of its large size.
Issue 2243453002: Replace SSLProtocolNegotiation histogram with SSLNegotiatedAlpnProtocol. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase. Created 4 years, 4 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 0f5c2c4e54dc52d5c3d392adc9f14d1ffd369e84..ac091c8e40ee62dc21032a38cc4fa0f059069857 100644
--- a/tools/metrics/histograms/histograms.xml
+++ b/tools/metrics/histograms/histograms.xml
@@ -26500,6 +26500,14 @@ http://cs/file:chrome/histograms.xml - but prefer this file for new entries.
</summary>
</histogram>
+<histogram name="Net.AlpnNegotiatedProtocol" enum="AlpnNegotiatedProtocol">
+ <owner>bnc@chromium.org</owner>
+ <summary>
+ Whether the server included an ALPN extension in the TLS server hello; and
+ if so, the negotiated protocol.
davidben 2016/08/17 19:44:11 For each TLS handshake, whether ALPN was negotiate
Bence 2016/08/18 13:37:34 Done.
+ </summary>
+</histogram>
+
<histogram name="Net.AlternateProtocolBrokenLocation"
enum="BrokenAlternateProtocolLocation">
<owner>rch@chromium.org</owner>
@@ -31911,6 +31919,9 @@ http://cs/file:chrome/histograms.xml - but prefer this file for new entries.
</histogram>
<histogram name="Net.SSLProtocolNegotiation" enum="SSLProtocolNegotiation">
+ <obsolete>
+ Superseded by Net.AlpnNegotiatedProtocol in 2016 August.
+ </obsolete>
<owner>bnc@chromium.org</owner>
<summary>
TLS extension used to negotiate protocol (ALPN or NPN); in case of NPN,
@@ -67034,6 +67045,12 @@ http://cs/file:chrome/histograms.xml - but prefer this file for new entries.
<int value="2" label="Malformed response"/>
</enum>
+<enum name="AlpnNegotiatedProtocol" type="int">
+ <int value="0" label="ALPN not used"/>
+ <int value="1" label="HTTP/1.1 negotiated via ALPN"/>
+ <int value="2" label="HTTP/2 negotiated via ALPN"/>
+</enum>
+
<enum name="AlternateProtocolUsage" type="int">
<int value="0" label="ALTERNATE_PROTOCOL_USAGE_NO_RACE"/>
<int value="1" label="ALTERNATE_PROTOCOL_USAGE_WON_RACE"/>
« net/socket/ssl_client_socket_impl.cc ('K') | « net/socket/ssl_client_socket_impl.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698