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

Unified Diff: net/base/cert_status_flags.h

Issue 8342054: net: enable CRL sets behind a command line flag. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: ... Created 9 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/base/cert_status_flags.h
diff --git a/net/base/cert_status_flags.h b/net/base/cert_status_flags.h
index 79ac1b0d3c46efb0fb898408381aefcee4c9e3d7..402cf3c592c9795617381209f3e406cb6d97eb2c 100644
--- a/net/base/cert_status_flags.h
+++ b/net/base/cert_status_flags.h
@@ -37,6 +37,7 @@ static const CertStatus CERT_STATUS_NON_UNIQUE_NAME = 1 << 10;
static const CertStatus CERT_STATUS_IS_EV = 1 << 16;
static const CertStatus CERT_STATUS_REV_CHECKING_ENABLED = 1 << 17;
static const CertStatus CERT_STATUS_IS_DNSSEC = 1 << 18;
+static const CertStatus CERT_STATUS_USED_CRL_SET = 1 << 19;
wtc 2011/10/21 23:17:31 Do we really need this bit of info? Is CERT_STATU
agl 2011/10/24 20:44:27 I initially thought that it might be useful, but I
// Returns true if the specified cert status has an error set.
static inline bool IsCertStatusError(CertStatus status) {

Powered by Google App Engine
This is Rietveld 408576698