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

Unified Diff: net/cert/cert_verify_result.h

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: whitespace Created 7 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:
View side-by-side diff with in-line comments
Download patch
Index: net/cert/cert_verify_result.h
diff --git a/net/cert/cert_verify_result.h b/net/cert/cert_verify_result.h
index a00c03e4a242ad382be5161bec422f95fa62b03d..4c56c97cffb8b502e3dfbd145db55677004e93f0 100644
--- a/net/cert/cert_verify_result.h
+++ b/net/cert/cert_verify_result.h
@@ -62,6 +62,10 @@ class NET_EXPORT CertVerifyResult {
// is_issued_by_additional_trust_anchor is true if the root CA used for this
// verification came from the list of additional trust anchors.
bool is_issued_by_additional_trust_anchor;
+
+ // True if a fallback to the common name was used when matching the host
+ // name, rather than using the subjectAlternativeName.
wtc 2013/10/23 22:39:26 Nit: consider using "subjectAltName", the form use
+ bool common_name_fallback_used;
};
} // namespace net

Powered by Google App Engine
This is Rietveld 408576698