| Index: net/quic/quic_crypto_stream_test.cc
|
| diff --git a/net/quic/quic_crypto_stream_test.cc b/net/quic/quic_crypto_stream_test.cc
|
| index b1c41b9e8ca8432d4a646f57537570d3e9a60eb8..326ece8c3619736904d6d726f0f40bae7b0153ee 100644
|
| --- a/net/quic/quic_crypto_stream_test.cc
|
| +++ b/net/quic/quic_crypto_stream_test.cc
|
| @@ -45,7 +45,9 @@ class MockQuicCryptoStream : public QuicCryptoStream {
|
| class QuicCryptoStreamTest : public ::testing::Test {
|
| public:
|
| QuicCryptoStreamTest()
|
| - : connection_(new MockConnection(&helper_, Perspective::IS_CLIENT)),
|
| + : connection_(new MockConnection(&helper_,
|
| + &alarm_factory_,
|
| + Perspective::IS_CLIENT)),
|
| session_(connection_),
|
| stream_(&session_) {
|
| message_.set_tag(kSHLO);
|
| @@ -61,6 +63,7 @@ class QuicCryptoStreamTest : public ::testing::Test {
|
|
|
| protected:
|
| MockConnectionHelper helper_;
|
| + MockAlarmFactory alarm_factory_;
|
| MockConnection* connection_;
|
| MockQuicSpdySession session_;
|
| MockQuicCryptoStream stream_;
|
|
|