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

Unified Diff: net/quic/crypto/proof_verifier_chromium.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 | « no previous file | net/socket/ssl_client_socket_impl.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/quic/crypto/proof_verifier_chromium.cc
diff --git a/net/quic/crypto/proof_verifier_chromium.cc b/net/quic/crypto/proof_verifier_chromium.cc
index 45981501cdb6ff79745666609bf4b85ada8b1bdf..1bfd11e4d2f14f2ab69fb6447847f69be7e1d975 100644
--- a/net/quic/crypto/proof_verifier_chromium.cc
+++ b/net/quic/crypto/proof_verifier_chromium.cc
@@ -151,11 +151,11 @@ ProofVerifierChromium::Job::Job(
next_state_(STATE_NONE),
start_time_(base::TimeTicks::Now()),
net_log_(net_log) {
- DCHECK(proof_verifier_);
- DCHECK(verifier_);
- DCHECK(policy_enforcer_);
- DCHECK(transport_security_state_);
- DCHECK(cert_transparency_verifier_);
+ CHECK(proof_verifier_);
+ CHECK(verifier_);
+ CHECK(policy_enforcer_);
+ CHECK(transport_security_state_);
+ CHECK(cert_transparency_verifier_);
}
ProofVerifierChromium::Job::~Job() {
« no previous file with comments | « no previous file | net/socket/ssl_client_socket_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698