| 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 73b5bab080aaafc60dfff71cdc80597c8240cfcd..76de7fa0109cb33e50688e78dac965a6fd7bd5d9 100644
|
| --- a/net/quic/test_tools/crypto_test_utils.cc
|
| +++ b/net/quic/test_tools/crypto_test_utils.cc
|
| @@ -136,7 +136,7 @@ int CryptoTestUtils::HandshakeWithFakeServer(
|
| IPEndPoint addr = IPEndPoint(ip, 1);
|
| PacketSavingConnection* server_conn =
|
| new PacketSavingConnection(guid, addr, true);
|
| - TestSession server_session(server_conn, QuicConfig(), true);
|
| + TestSession server_session(server_conn, DefaultQuicConfig(), true);
|
|
|
| QuicCryptoServerConfig crypto_config(QuicCryptoServerConfig::TESTING,
|
| QuicRandom::GetInstance());
|
| @@ -169,7 +169,7 @@ int CryptoTestUtils::HandshakeWithFakeClient(
|
| IPEndPoint addr = IPEndPoint(ip, 1);
|
| PacketSavingConnection* client_conn =
|
| new PacketSavingConnection(guid, addr, false);
|
| - TestSession client_session(client_conn, QuicConfig(), false);
|
| + TestSession client_session(client_conn, DefaultQuicConfig(), false);
|
| QuicCryptoClientConfig crypto_config;
|
|
|
| client_session.config()->SetDefaults();
|
|
|