| Index: net/tools/quic/quic_server_session.cc
|
| diff --git a/net/tools/quic/quic_server_session.cc b/net/tools/quic/quic_server_session.cc
|
| index fc84f75f5f538c6e0cd9d6bd032a45f9cd656362..f6923325437f78cc04e2540db8a1d58e13dc758a 100644
|
| --- a/net/tools/quic/quic_server_session.cc
|
| +++ b/net/tools/quic/quic_server_session.cc
|
| @@ -11,10 +11,13 @@
|
| namespace net {
|
| namespace tools {
|
|
|
| -QuicServerSession::QuicServerSession(QuicConnection* connection,
|
| - QuicSessionOwner* owner)
|
| +QuicServerSession::QuicServerSession(
|
| + const QuicConfig& config,
|
| + const QuicCryptoServerConfig& crypto_config,
|
| + QuicConnection* connection,
|
| + QuicSessionOwner* owner)
|
| : QuicSession(connection, true),
|
| - crypto_stream_(this),
|
| + crypto_stream_(config, crypto_config, this),
|
| owner_(owner) {
|
| }
|
|
|
|
|