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 5b69e469bf04ebb897149a9178d8f5a210483f27..161003db7730178a71fd93ed02faf2d8efee1ab9 100644 |
--- a/net/quic/quic_http_stream_test.cc |
+++ b/net/quic/quic_http_stream_test.cc |
@@ -206,16 +206,11 @@ class QuicHttpStreamTest : public ::testing::TestWithParam<QuicVersion> { |
helper_.get(), writer_factory); |
connection_->set_visitor(&visitor_); |
connection_->SetSendAlgorithm(send_algorithm_); |
- session_.reset( |
- new QuicClientSession(connection_, |
- scoped_ptr<DatagramClientSocket>(socket), |
- nullptr, |
- &transport_security_state_, |
- make_scoped_ptr((QuicServerInfo*)nullptr), |
- DefaultQuicConfig(), |
- base::MessageLoop::current()-> |
- message_loop_proxy().get(), |
- nullptr)); |
+ session_.reset(new QuicClientSession( |
+ connection_, scoped_ptr<DatagramClientSocket>(socket), nullptr, |
+ &transport_security_state_, make_scoped_ptr((QuicServerInfo*)nullptr), |
+ DefaultQuicConfig(), "CONNECTION_UNKNOWN", |
+ base::MessageLoop::current()->message_loop_proxy().get(), nullptr)); |
session_->InitializeSession(QuicServerId(kServerHostname, kServerPort, |
/*is_secure=*/false, |
PRIVACY_MODE_DISABLED), |