| Index: net/quic/test_tools/quic_test_utils.cc
|
| diff --git a/net/quic/test_tools/quic_test_utils.cc b/net/quic/test_tools/quic_test_utils.cc
|
| index 3705a44218490258bfdc98e7ed1d25f0bd33168d..1041569067a60245d42d7ac76eba2d7440187874 100644
|
| --- a/net/quic/test_tools/quic_test_utils.cc
|
| +++ b/net/quic/test_tools/quic_test_utils.cc
|
| @@ -342,9 +342,11 @@ TestQuicSpdyServerSession::~TestQuicSpdyServerSession() {}
|
|
|
| QuicCryptoServerStreamBase*
|
| TestQuicSpdyServerSession::CreateQuicCryptoServerStream(
|
| - const QuicCryptoServerConfig* crypto_config) {
|
| - return new QuicCryptoServerStream(
|
| - crypto_config, FLAGS_enable_quic_stateless_reject_support, this);
|
| + const QuicCryptoServerConfig* crypto_config,
|
| + QuicCompressedCertsCache* compressed_certs_cache) {
|
| + return new QuicCryptoServerStream(crypto_config, compressed_certs_cache,
|
| + FLAGS_enable_quic_stateless_reject_support,
|
| + this);
|
| }
|
|
|
| QuicCryptoServerStream* TestQuicSpdyServerSession::GetCryptoStream() {
|
|
|