Index: net/quic/quic_crypto_client_stream_factory.cc |
diff --git a/net/quic/quic_crypto_client_stream_factory.cc b/net/quic/quic_crypto_client_stream_factory.cc |
index 03565bae84f22e5e2f3650e809cd2fdd0e05b58c..41ca05b922c413e41a2cff17965f3dc34c240285 100644 |
--- a/net/quic/quic_crypto_client_stream_factory.cc |
+++ b/net/quic/quic_crypto_client_stream_factory.cc |
@@ -20,8 +20,9 @@ class DefaultCryptoStreamFactory : public QuicCryptoClientStreamFactory { |
QuicChromiumClientSession* session, |
scoped_ptr<ProofVerifyContext> proof_verify_context, |
QuicCryptoClientConfig* crypto_config) override { |
- return new QuicCryptoClientStream( |
- server_id, session, proof_verify_context.release(), crypto_config); |
+ return new QuicCryptoClientStream(server_id, session, |
+ proof_verify_context.release(), |
+ crypto_config, session); |
} |
}; |