summaryrefslogtreecommitdiffstats
path: root/net/quic/quic_client_session.cc
diff options
context:
space:
mode:
Diffstat (limited to 'net/quic/quic_client_session.cc')
-rw-r--r--net/quic/quic_client_session.cc5
1 files changed, 4 insertions, 1 deletions
diff --git a/net/quic/quic_client_session.cc b/net/quic/quic_client_session.cc
index 865c9b0..d62b318 100644
--- a/net/quic/quic_client_session.cc
+++ b/net/quic/quic_client_session.cc
@@ -108,11 +108,14 @@ QuicClientSession::QuicClientSession(
logger_(net_log_),
num_packets_read_(0),
weak_factory_(this) {
+ ProofVerifyContextChromium* verify_context =
+ new ProofVerifyContextChromium(net_log_);
crypto_stream_.reset(
crypto_client_stream_factory ?
crypto_client_stream_factory->CreateQuicCryptoClientStream(
server_key, this, crypto_config) :
- new QuicCryptoClientStream(server_key, this, this, crypto_config));
+ new QuicCryptoClientStream(server_key, this, this, verify_context,
+ crypto_config));
connection->set_debug_visitor(&logger_);
// TODO(rch): pass in full host port proxy pair