| Index: net/quic/quic_headers_stream_test.cc
|
| diff --git a/net/quic/quic_headers_stream_test.cc b/net/quic/quic_headers_stream_test.cc
|
| index ccb758639edfa6d45085e893dee6ec537641ad7a..afec3f5e38341475eeffa7707de8e04dd6985058 100644
|
| --- a/net/quic/quic_headers_stream_test.cc
|
| +++ b/net/quic/quic_headers_stream_test.cc
|
| @@ -123,10 +123,10 @@ vector<TestParams> GetTestParams() {
|
| class QuicHeadersStreamTest : public ::testing::TestWithParam<TestParams> {
|
| public:
|
| QuicHeadersStreamTest()
|
| - : connection_(new StrictMock<MockConnection>(&helper_,
|
| - &alarm_factory_,
|
| - perspective(),
|
| - GetVersion())),
|
| + : connection_(new StrictMock<MockQuicConnection>(&helper_,
|
| + &alarm_factory_,
|
| + perspective(),
|
| + GetVersion())),
|
| session_(connection_),
|
| headers_stream_(QuicSpdySessionPeer::GetHeadersStream(&session_)),
|
| body_("hello world"),
|
| @@ -235,9 +235,9 @@ class QuicHeadersStreamTest : public ::testing::TestWithParam<TestParams> {
|
| static const bool kFrameComplete = true;
|
| static const bool kHasPriority = true;
|
|
|
| - MockConnectionHelper helper_;
|
| + MockQuicConnectionHelper helper_;
|
| MockAlarmFactory alarm_factory_;
|
| - StrictMock<MockConnection>* connection_;
|
| + StrictMock<MockQuicConnection>* connection_;
|
| StrictMock<MockQuicSpdySession> session_;
|
| QuicHeadersStream* headers_stream_;
|
| SpdyHeaderBlock headers_;
|
|
|