| Index: net/quic/test_tools/quic_test_utils.h
|
| diff --git a/net/quic/test_tools/quic_test_utils.h b/net/quic/test_tools/quic_test_utils.h
|
| index bbe3c94df613f27e193c5422ddf6e63b9f486f35..91fb7cd6e5f5b70ac954723b6ceb7ae5ff8c9be1 100644
|
| --- a/net/quic/test_tools/quic_test_utils.h
|
| +++ b/net/quic/test_tools/quic_test_utils.h
|
| @@ -509,7 +509,8 @@ class TestQuicSpdyServerSession : public QuicServerSessionBase {
|
| public:
|
| TestQuicSpdyServerSession(QuicConnection* connection,
|
| const QuicConfig& config,
|
| - const QuicCryptoServerConfig* crypto_config);
|
| + const QuicCryptoServerConfig* crypto_config,
|
| + QuicCompressedCertsCache* compressed_certs_cache);
|
| ~TestQuicSpdyServerSession() override;
|
|
|
| MOCK_METHOD1(CreateIncomingDynamicStream, QuicSpdyStream*(QuicStreamId id));
|
| @@ -798,13 +799,15 @@ void CreateClientSessionForTest(QuicServerId server_id,
|
| // server_session.
|
| // server_session: Pointer reference for the newly created server
|
| // session. The new object will be owned by the caller.
|
| -void CreateServerSessionForTest(QuicServerId server_id,
|
| - QuicTime::Delta connection_start_time,
|
| - QuicVersionVector supported_versions,
|
| - MockConnectionHelper* helper,
|
| - QuicCryptoServerConfig* crypto_server_config,
|
| - PacketSavingConnection** server_connection,
|
| - TestQuicSpdyServerSession** server_session);
|
| +void CreateServerSessionForTest(
|
| + QuicServerId server_id,
|
| + QuicTime::Delta connection_start_time,
|
| + QuicVersionVector supported_versions,
|
| + MockConnectionHelper* helper,
|
| + QuicCryptoServerConfig* crypto_server_config,
|
| + QuicCompressedCertsCache* compressed_certs_cache,
|
| + PacketSavingConnection** server_connection,
|
| + TestQuicSpdyServerSession** server_session);
|
|
|
| // Helper to generate client side stream ids, generalizes
|
| // kClientDataStreamId1 etc. above.
|
|
|