Chromium Code Reviews| 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 c0643d4458d89d24681ea9a90b8fcb94b770cac5..5a73fed7977db615b051c51e32ba9c260f476347 100644 |
| --- a/net/quic/quic_http_stream_test.cc |
| +++ b/net/quic/quic_http_stream_test.cc |
| @@ -205,7 +205,8 @@ class QuicHttpStreamTest : public ::testing::TestWithParam<QuicVersion> { |
| connection_->SetReceiveAlgorithm(receive_algorithm_); |
| crypto_config_.SetDefaults(); |
| session_.reset( |
| - new QuicClientSession(connection_, |
| + new QuicClientSession(host_port_pair_, |
| + connection_, |
| scoped_ptr<DatagramClientSocket>(socket), |
| writer_.Pass(), NULL, |
| &crypto_client_stream_factory_, |
| @@ -288,6 +289,7 @@ class QuicHttpStreamTest : public ::testing::TestWithParam<QuicVersion> { |
| scoped_refptr<TestTaskRunner> runner_; |
| scoped_ptr<MockWrite[]> mock_writes_; |
| MockClock clock_; |
| + const HostPortPair host_port_pair_; |
|
wtc
2014/07/01 23:00:15
IMPORTANT: this is an empty string!
Ryan Hamilton
2014/07/01 23:26:20
Reverted this change.
|
| TestQuicConnection* connection_; |
| scoped_ptr<QuicConnectionHelper> helper_; |
| testing::StrictMock<MockConnectionVisitor> visitor_; |