| Index: net/tools/quic/quic_dispatcher_test.cc
|
| diff --git a/net/tools/quic/quic_dispatcher_test.cc b/net/tools/quic/quic_dispatcher_test.cc
|
| index 169dc6304afc3e51123afadd1596ed3ee8e96553..d374906bb37d3fc4068ca0930b23c1a795fb5a6b 100644
|
| --- a/net/tools/quic/quic_dispatcher_test.cc
|
| +++ b/net/tools/quic/quic_dispatcher_test.cc
|
| @@ -63,7 +63,8 @@ class TestQuicSpdyServerSession : public QuicServerSessionBase {
|
|
|
| QuicCryptoServerStreamBase* CreateQuicCryptoServerStream(
|
| const QuicCryptoServerConfig* crypto_config) override {
|
| - return new QuicCryptoServerStream(crypto_config, this);
|
| + return new QuicCryptoServerStream(
|
| + crypto_config, FLAGS_enable_quic_stateless_reject_support, this);
|
| }
|
|
|
| void SetCryptoStream(QuicCryptoServerStream* crypto_stream) {
|
| @@ -383,7 +384,9 @@ class MockQuicCryptoServerStream : public QuicCryptoServerStream {
|
| public:
|
| MockQuicCryptoServerStream(const QuicCryptoServerConfig& crypto_config,
|
| QuicSession* session)
|
| - : QuicCryptoServerStream(&crypto_config, session) {}
|
| + : QuicCryptoServerStream(&crypto_config,
|
| + FLAGS_enable_quic_stateless_reject_support,
|
| + session) {}
|
| void set_handshake_confirmed_for_testing(bool handshake_confirmed) {
|
| handshake_confirmed_ = handshake_confirmed;
|
| }
|
|
|