| Index: net/quic/quic_client_session.cc
|
| diff --git a/net/quic/quic_client_session.cc b/net/quic/quic_client_session.cc
|
| index a2f9179f19b223243e363c2ac18e61d3ec767b38..ed03ff790323a45bb3a36abda0a2a62e6999bce6 100644
|
| --- a/net/quic/quic_client_session.cc
|
| +++ b/net/quic/quic_client_session.cc
|
| @@ -18,6 +18,7 @@
|
| #include "net/http/transport_security_state.h"
|
| #include "net/quic/crypto/proof_verifier_chromium.h"
|
| #include "net/quic/crypto/quic_server_info.h"
|
| +#include "net/quic/network_connection.h"
|
| #include "net/quic/quic_connection_helper.h"
|
| #include "net/quic/quic_crypto_client_stream_factory.h"
|
| #include "net/quic/quic_server_id.h"
|
| @@ -159,6 +160,7 @@ QuicClientSession::QuicClientSession(
|
| TransportSecurityState* transport_security_state,
|
| scoped_ptr<QuicServerInfo> server_info,
|
| const QuicConfig& config,
|
| + NetworkConnection* network_connection,
|
| base::TaskRunner* task_runner,
|
| NetLog* net_log)
|
| : QuicClientSessionBase(connection, config),
|
| @@ -172,7 +174,7 @@ QuicClientSession::QuicClientSession(
|
| num_total_streams_(0),
|
| task_runner_(task_runner),
|
| net_log_(BoundNetLog::Make(net_log, NetLog::SOURCE_QUIC_SESSION)),
|
| - logger_(new QuicConnectionLogger(this, net_log_)),
|
| + logger_(new QuicConnectionLogger(this, network_connection, net_log_)),
|
| num_packets_read_(0),
|
| going_away_(false),
|
| weak_factory_(this) {
|
|
|