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

Unified Diff: net/quic/test_tools/crypto_test_utils.cc

Issue 1309813003: Implement an openssl version of a QUIC ProofSource. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix comments Created 5 years, 4 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/quic/test_tools/crypto_test_utils.cc
diff --git a/net/quic/test_tools/crypto_test_utils.cc b/net/quic/test_tools/crypto_test_utils.cc
index 811da803f1a59c3e60021afc2c6155436fa2a242..372923d21f4439177aba7a1029c045b2e685d496 100644
--- a/net/quic/test_tools/crypto_test_utils.cc
+++ b/net/quic/test_tools/crypto_test_utils.cc
@@ -228,9 +228,7 @@ int CryptoTestUtils::HandshakeWithFakeClient(
QuicServerId server_id(kServerHostname, kServerPort, is_https,
PRIVACY_MODE_DISABLED);
if (!options.dont_verify_certs) {
- // TODO(wtc): replace this with ProofVerifierForTesting() when we have
- // a working ProofSourceForTesting().
- crypto_config.SetProofVerifier(FakeProofVerifierForTesting());
+ crypto_config.SetProofVerifier(ProofVerifierForTesting());
}
TestQuicSpdyClientSession client_session(client_conn, DefaultQuicConfig(),
server_id, &crypto_config);

Powered by Google App Engine
This is Rietveld 408576698