| Index: net/quic/quartc/quartc_stream_test.cc
|
| diff --git a/net/quic/quartc/quartc_stream_test.cc b/net/quic/quartc/quartc_stream_test.cc
|
| index c074be8afdc62f624c2784e52ef35157a984fd65..0bead69d9e956fe584bdd9ef0721cf6529fe9ba2 100644
|
| --- a/net/quic/quartc/quartc_stream_test.cc
|
| +++ b/net/quic/quartc/quartc_stream_test.cc
|
| @@ -58,7 +58,8 @@ class MockQuicSession : public QuicSession {
|
| return nullptr;
|
| }
|
|
|
| - QuicCryptoStream* GetCryptoStream() override { return nullptr; }
|
| + const QuicCryptoStream* GetCryptoStream() const override { return nullptr; }
|
| + QuicCryptoStream* GetMutableCryptoStream() override { return nullptr; }
|
|
|
| // Called by QuicStream when they want to close stream.
|
| void SendRstStream(QuicStreamId id,
|
|
|