Index: net/quic/quic_spdy_stream_test.cc |
diff --git a/net/quic/quic_spdy_stream_test.cc b/net/quic/quic_spdy_stream_test.cc |
index 95cb4679eb8f82022eb38d4ab4568f1f98eb4278..8edf223aa655d940985d2642b50fc4d32c60e7be 100644 |
--- a/net/quic/quic_spdy_stream_test.cc |
+++ b/net/quic/quic_spdy_stream_test.cc |
@@ -98,7 +98,8 @@ class QuicSpdyStreamTest : public ::testing::TestWithParam<QuicVersion> { |
void Initialize(bool stream_should_process_data) { |
connection_ = new testing::StrictMock<MockConnection>( |
- &helper_, Perspective::IS_SERVER, SupportedVersions(GetParam())); |
+ &helper_, &alarm_factory_, Perspective::IS_SERVER, |
+ SupportedVersions(GetParam())); |
session_.reset(new testing::StrictMock<MockQuicSpdySession>(connection_)); |
stream_ = new TestStream(kClientDataStreamId1, session_.get(), |
stream_should_process_data); |
@@ -110,6 +111,7 @@ class QuicSpdyStreamTest : public ::testing::TestWithParam<QuicVersion> { |
protected: |
MockConnectionHelper helper_; |
+ MockAlarmFactory alarm_factory_; |
MockConnection* connection_; |
std::unique_ptr<MockQuicSpdySession> session_; |