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

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

Side-by-side diff isn't available for this file because of its large size.
Issue 27624002: Add a histogram for measuring the number of times we fall back to common name matching, when a cert… (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Review feedback Created 7 years, 1 month 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/spdy/spdy_session.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 7fc35a87e4b543de5142f45bf54a5df0e5ecdd8e..6a81701af236236ecc9be65da5e128dc40b816d9 100644
--- a/tools/metrics/histograms/histograms.xml
+++ b/tools/metrics/histograms/histograms.xml
@@ -6802,6 +6802,25 @@ other types of suffix sets.
<summary>The time to generate an NTLM HTTP authentication token.</summary>
</histogram>
+<histogram name="Net.CertCommonNameFallback" enum="BooleanCommonNameMatch">
+ <summary>
+ Whether the certificate common name was used for matching the hostname,
+ instead of the subjectAlternativeName.
+
+ Measures results for all CAs (internal and publicly-trusted).
+ </summary>
+</histogram>
+
+<histogram name="Net.CertCommonNameFallbackPrivateCA"
+ enum="BooleanCommonNameMatch">
+ <summary>
+ Whether the certificate common name was used for matching the hostname,
+ instead of the subjectAlternativeName.
+
+ Measures results ony for internal (non-publicly-trusted) CAs.
+ </summary>
+</histogram>
+
<histogram name="Net.CertificatePinSuccess" enum="BooleanSuccess">
<obsolete>
Renamed to Net.PublicKeyPinSuccess 28 Oct 2011.
@@ -20079,6 +20098,11 @@ other types of suffix sets.
<int value="1" label="Attempted"/>
</enum>
+<enum name="BooleanCommonNameMatch" type="int">
+ <int value="0" label="subjectAltName used"/>
+ <int value="1" label="Common Name used"/>
+</enum>
+
<enum name="BooleanCorrupt" type="int">
<int value="0" label="Not Corrupt"/>
<int value="1" label="Corrupt"/>
« no previous file with comments | « net/spdy/spdy_session.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698