| Index: net/socket/transport_client_socket_pool.cc
|
| diff --git a/net/socket/transport_client_socket_pool.cc b/net/socket/transport_client_socket_pool.cc
|
| index 436e3c80afcb54874256a5c50f69bf99ee4fd2a1..1b364cbe11dd118544a47176b9f55f7bb415ea75 100644
|
| --- a/net/socket/transport_client_socket_pool.cc
|
| +++ b/net/socket/transport_client_socket_pool.cc
|
| @@ -103,12 +103,13 @@ TransportConnectJob::TransportConnectJob(
|
| HostResolver* host_resolver,
|
| Delegate* delegate,
|
| NetLog* net_log)
|
| - : ConnectJob(group_name,
|
| - timeout_duration,
|
| - priority,
|
| - respect_limits,
|
| - delegate,
|
| - BoundNetLog::Make(net_log, NetLogSourceType::CONNECT_JOB)),
|
| + : ConnectJob(
|
| + group_name,
|
| + timeout_duration,
|
| + priority,
|
| + respect_limits,
|
| + delegate,
|
| + NetLogWithSource::Make(net_log, NetLogSourceType::CONNECT_JOB)),
|
| params_(params),
|
| resolver_(host_resolver),
|
| client_socket_factory_(client_socket_factory),
|
| @@ -558,7 +559,7 @@ int TransportClientSocketPool::RequestSocket(const std::string& group_name,
|
| RespectLimits respect_limits,
|
| ClientSocketHandle* handle,
|
| const CompletionCallback& callback,
|
| - const BoundNetLog& net_log) {
|
| + const NetLogWithSource& net_log) {
|
| const scoped_refptr<TransportSocketParams>* casted_params =
|
| static_cast<const scoped_refptr<TransportSocketParams>*>(params);
|
|
|
| @@ -569,7 +570,7 @@ int TransportClientSocketPool::RequestSocket(const std::string& group_name,
|
| }
|
|
|
| void TransportClientSocketPool::NetLogTcpClientSocketPoolRequestedSocket(
|
| - const BoundNetLog& net_log,
|
| + const NetLogWithSource& net_log,
|
| const scoped_refptr<TransportSocketParams>* casted_params) {
|
| if (net_log.IsCapturing()) {
|
| // TODO(eroman): Split out the host and port parameters.
|
| @@ -584,7 +585,7 @@ void TransportClientSocketPool::RequestSockets(
|
| const std::string& group_name,
|
| const void* params,
|
| int num_sockets,
|
| - const BoundNetLog& net_log) {
|
| + const NetLogWithSource& net_log) {
|
| const scoped_refptr<TransportSocketParams>* casted_params =
|
| static_cast<const scoped_refptr<TransportSocketParams>*>(params);
|
|
|
|
|