| Index: net/tools/quic/test_tools/quic_test_server.cc
|
| diff --git a/net/tools/quic/test_tools/quic_test_server.cc b/net/tools/quic/test_tools/quic_test_server.cc
|
| index 8d1ebf5f15c83bc49a826e78c614230390066447..d513a69601bf0c5685db09b58c16a9852b91ebd7 100644
|
| --- a/net/tools/quic/test_tools/quic_test_server.cc
|
| +++ b/net/tools/quic/test_tools/quic_test_server.cc
|
| @@ -57,11 +57,13 @@ class CustomStreamSession : public QuicSimpleServerSession {
|
| }
|
|
|
| QuicCryptoServerStreamBase* CreateQuicCryptoServerStream(
|
| - const QuicCryptoServerConfig* crypto_config) override {
|
| + const QuicCryptoServerConfig* crypto_config,
|
| + QuicCompressedCertsCache* compressed_certs_cache) override {
|
| if (crypto_stream_factory_) {
|
| return crypto_stream_factory_->CreateCryptoStream(crypto_config, this);
|
| }
|
| - return QuicSimpleServerSession::CreateQuicCryptoServerStream(crypto_config);
|
| + return QuicSimpleServerSession::CreateQuicCryptoServerStream(
|
| + crypto_config, compressed_certs_cache);
|
| }
|
|
|
| private:
|
|
|