Index: net/quic/quic_stream_factory.cc |
diff --git a/net/quic/quic_stream_factory.cc b/net/quic/quic_stream_factory.cc |
index c4586604e4471d1fca123f6f90b058c90b3534ea..6a03695fd5fed942211698c311554dc375334218 100644 |
--- a/net/quic/quic_stream_factory.cc |
+++ b/net/quic/quic_stream_factory.cc |
@@ -829,9 +829,13 @@ int QuicStreamFactory::CreateSession( |
clock_.get(), random_generator_)); |
} |
- QuicConnection* connection = |
- new QuicConnection(connection_id, addr, helper_.get(), writer.get(), |
- false, supported_versions_); |
+ QuicConnection* connection = new QuicConnection(connection_id, |
+ addr, |
+ helper_.get(), |
+ writer.get(), |
+ false /* owns_writer */, |
+ false /* is_server */, |
+ supported_versions_); |
writer->SetConnection(connection); |
connection->set_max_packet_length(max_packet_length_); |