Index: net/quic/quic_http_stream_test.cc |
diff --git a/net/quic/quic_http_stream_test.cc b/net/quic/quic_http_stream_test.cc |
index db97aac5442b16bc620f2b4030b28bef5e3fe76e..a172c2486b56191e00135e16785da7c084209315 100644 |
--- a/net/quic/quic_http_stream_test.cc |
+++ b/net/quic/quic_http_stream_test.cc |
@@ -65,8 +65,9 @@ class TestQuicConnection : public QuicConnection { |
address, |
helper, |
writer_factory, |
- true /* owns_writer */, |
+ true /* owns_writer */, |
false /* is_server */, |
+ false /* is_secure */, |
versions) { |
} |
@@ -215,7 +216,7 @@ class QuicHttpStreamTest : public ::testing::TestWithParam<QuicVersion> { |
WillRepeatedly(Return(QuicTime::Delta::Zero())); |
EXPECT_CALL(*send_algorithm_, BandwidthEstimate()).WillRepeatedly( |
Return(QuicBandwidth::Zero())); |
- EXPECT_CALL(*send_algorithm_, SetFromConfig(_, _)).Times(AnyNumber()); |
+ EXPECT_CALL(*send_algorithm_, SetFromConfig(_, _, _)).Times(AnyNumber()); |
helper_.reset(new QuicConnectionHelper(runner_.get(), &clock_, |
&random_generator_)); |
TestPacketWriterFactory writer_factory(socket); |
@@ -232,7 +233,6 @@ class QuicHttpStreamTest : public ::testing::TestWithParam<QuicVersion> { |
&transport_security_state_, |
make_scoped_ptr((QuicServerInfo*)nullptr), |
DefaultQuicConfig(), |
- /*is_secure=*/false, |
base::MessageLoop::current()-> |
message_loop_proxy().get(), |
nullptr)); |