Index: net/quic/quic_dispatcher.cc |
diff --git a/net/quic/quic_dispatcher.cc b/net/quic/quic_dispatcher.cc |
index aede7c2480498367380d01024a34cde65a9253fd..d27b4541311d417ec74cf0e1500488bfeef44d27 100644 |
--- a/net/quic/quic_dispatcher.cc |
+++ b/net/quic/quic_dispatcher.cc |
@@ -352,8 +352,7 @@ QuicSession* QuicDispatcher::CreateQuicSession( |
QuicServerSession* session = new QuicServerSession( |
config_, |
CreateQuicConnection(connection_id, server_address, client_address), |
- this, |
- crypto_config_.HasProofSource()); |
+ this); |
session->InitializeSession(crypto_config_); |
return session; |
} |
@@ -368,6 +367,7 @@ QuicConnection* QuicDispatcher::CreateQuicConnection( |
connection_writer_factory_, |
/* owns_writer= */ true, |
/* is_server= */ true, |
+ crypto_config_.HasProofSource(), |
supported_versions_); |
} |