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

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

Side-by-side diff isn't available for this file because of its large size.
Issue 1360633002: Implement Token Binding negotiation TLS extension (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@test-server-flags
Patch Set: Rip out TB key lookup from SSLClientSocketOpenSSL; fold TokenBindingExtension class into SSLClientS… Created 5 years, 2 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
« net/ssl/ssl_info.cc ('K') | « net/ssl/ssl_info.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 9ec692d7f0b42f988c624c9005b5038139735cc2..a08606e17433ec54256ad3342257b51c774add4a 100644
--- a/tools/metrics/histograms/histograms.xml
+++ b/tools/metrics/histograms/histograms.xml
@@ -46570,6 +46570,15 @@ http://cs/file:chrome/histograms.xml - but prefer this file for new entries.
<summary>Number of retries until the final response was recorded.</summary>
</histogram>
+<histogram name="TokenBinding.Support" enum="TokenBinding.Support">
+ <owner>nharper@chromium.org</owner>
+ <summary>
+ Counts of SSL client sockets broken down by support for the Token Binding
+ TLS extension. Counts only connections with full handshakes; resumed
+ sessions are not counted.
+ </summary>
+</histogram>
+
<histogram name="Toolbar.ActionsModel.ComponentActionsCount">
<owner>rdevlin.cronin@chromium.org</owner>
<summary>
@@ -72471,6 +72480,19 @@ To add a new entry, add it with any value and run test to compute valid value.
<int value="1" label="Renegotiation patched"/>
</enum>
+<enum name="TokenBinding.Support" type="int">
+ <int value="0" label="DISABLED"/>
+ <int value="1" label="CLIENT_ONLY"/>
+ <int value="2" label="CLIENT_AND_SERVER"/>
+ <int value="3" label="CLIENT_NO_ECC">
+ Token Binding was enabled, but the client does not support ECC key
+ generation.
+ </int>
+ <int value="4" label="CLIENT_NO_CHANNEL_ID_SERVICE">
+ The SSLClientSocket was created without a ChannelIDService.
+ </int>
+</enum>
+
<enum name="TouchEventsState" type="int">
<int value="0" label="Enabled"/>
<int value="1" label="Automatic - enabled"/>
« net/ssl/ssl_info.cc ('K') | « net/ssl/ssl_info.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698