| 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 4d18cca20c940ea5cb93d00796d859204d236d49..bb5f36b13fa6ead990c0ea30e62b5506eff05626 100644
|
| --- a/net/quic/test_tools/crypto_test_utils.cc
|
| +++ b/net/quic/test_tools/crypto_test_utils.cc
|
| @@ -136,11 +136,14 @@ int CryptoTestUtils::HandshakeWithFakeServer(
|
| QuicCryptoServerConfig crypto_config(QuicCryptoServerConfig::TESTING,
|
| QuicRandom::GetInstance(),
|
| ProofSourceForTesting());
|
| + QuicCompressedCertsCache compressed_certs_cache(
|
| + QuicCompressedCertsCache::kQuicCompressedCertsCacheSize);
|
| SetupCryptoServerConfigForTest(server_conn->clock(),
|
| server_conn->random_generator(), &config,
|
| &crypto_config, options);
|
|
|
| - TestQuicSpdyServerSession server_session(server_conn, config, &crypto_config);
|
| + TestQuicSpdyServerSession server_session(server_conn, config, &crypto_config,
|
| + &compressed_certs_cache);
|
|
|
| // The client's handshake must have been started already.
|
| CHECK_NE(0u, client_conn->encrypted_packets_.size());
|
|
|