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

Unified Diff: net/socket/ssl_client_socket_impl.cc

Issue 2095823002: Make DCHECKs into CHECKs for CT policy code (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 6 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
« no previous file with comments | « net/quic/crypto/proof_verifier_chromium.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/socket/ssl_client_socket_impl.cc
diff --git a/net/socket/ssl_client_socket_impl.cc b/net/socket/ssl_client_socket_impl.cc
index 01acc54ffcfe0c1d2f14381263c74147f1adf978..85a17757120844cd3e30e02e11e4a8294c0c8cac 100644
--- a/net/socket/ssl_client_socket_impl.cc
+++ b/net/socket/ssl_client_socket_impl.cc
@@ -518,9 +518,10 @@ SSLClientSocketImpl::SSLClientSocketImpl(
pkp_bypassed_(false),
net_log_(transport_->socket()->NetLog()),
weak_factory_(this) {
- DCHECK(cert_verifier_);
- DCHECK(transport_security_state_);
- DCHECK(policy_enforcer_);
+ CHECK(cert_verifier_);
+ CHECK(transport_security_state_);
+ CHECK(cert_transparency_verifier_);
+ CHECK(policy_enforcer_);
}
SSLClientSocketImpl::~SSLClientSocketImpl() {
« no previous file with comments | « net/quic/crypto/proof_verifier_chromium.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698