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

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, 3 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
« no previous file with comments | « net/socket/ssl_client_socket_impl.cc ('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 370846e0d8da1ca87a973dcf284cc23c3710f67a..0808a3afc87e810340fbff86778bfab341f964a4 100644
--- a/tools/metrics/histograms/histograms.xml
+++ b/tools/metrics/histograms/histograms.xml
@@ -32723,6 +32723,15 @@ http://cs/file:chrome/histograms.xml - but prefer this file for new entries.
<summary>Time to complete a speculative certificate verification.</summary>
</histogram>
+<histogram name="Net.SSLNegotiatedAlpnProtocol"
+ enum="SSLNegotiatedAlpnProtocol">
+ <owner>bnc@chromium.org</owner>
+ <summary>
+ For each TLS handshake, whether ALPN was negotiated; and if so, the
+ negotiated protocol.
+ </summary>
+</histogram>
+
<histogram name="Net.SSLProtocolErrorCipher" enum="SSLCipherSuite">
<obsolete>
Removed in March 2016.
@@ -32749,6 +32758,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.SSLNegotiatedAlpnProtocol in 2016 August.
+ </obsolete>
<owner>bnc@chromium.org</owner>
<summary>
TLS extension used to negotiate protocol (ALPN or NPN); in case of NPN,
@@ -96100,6 +96112,12 @@ To add a new entry, add it with any value and run test to compute valid value.
<int value="3" label="NOT_EXPIRED_AND_DO_NOT_PROCEED"/>
</enum>
+<enum name="SSLNegotiatedAlpnProtocol" 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="SSLOrQUICVersion" type="int">
<int value="0" label="Unknown"/>
<int value="1" label="SSL 2.0"/>
« no previous file with comments | « 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