| Index: net/socket/transport_client_socket_pool.h | 
| diff --git a/net/socket/transport_client_socket_pool.h b/net/socket/transport_client_socket_pool.h | 
| index 73722a0a7a2265e8820f6c10be3c7c5c1dafb161..66f707b431b99c47190803da76c16b4e9b2bc1bc 100644 | 
| --- a/net/socket/transport_client_socket_pool.h | 
| +++ b/net/socket/transport_client_socket_pool.h | 
| @@ -23,8 +23,8 @@ namespace net { | 
| class ClientSocketFactory; | 
| class SocketPerformanceWatcherFactory; | 
|  | 
| -typedef base::Callback<int(const AddressList&, const BoundNetLog& net_log)> | 
| -OnHostResolutionCallback; | 
| +typedef base::Callback<int(const AddressList&, const NetLogWithSource& net_log)> | 
| +    OnHostResolutionCallback; | 
|  | 
| class NET_EXPORT_PRIVATE TransportSocketParams | 
| : public base::RefCounted<TransportSocketParams> { | 
| @@ -215,11 +215,11 @@ class NET_EXPORT_PRIVATE TransportClientSocketPool : public ClientSocketPool { | 
| RespectLimits respect_limits, | 
| ClientSocketHandle* handle, | 
| const CompletionCallback& callback, | 
| -                    const BoundNetLog& net_log) override; | 
| +                    const NetLogWithSource& net_log) override; | 
| void RequestSockets(const std::string& group_name, | 
| const void* params, | 
| int num_sockets, | 
| -                      const BoundNetLog& net_log) override; | 
| +                      const NetLogWithSource& net_log) override; | 
| void CancelRequest(const std::string& group_name, | 
| ClientSocketHandle* handle) override; | 
| void ReleaseSocket(const std::string& group_name, | 
| @@ -245,7 +245,7 @@ class NET_EXPORT_PRIVATE TransportClientSocketPool : public ClientSocketPool { | 
| protected: | 
| // Methods shared with WebSocketTransportClientSocketPool | 
| void NetLogTcpClientSocketPoolRequestedSocket( | 
| -      const BoundNetLog& net_log, | 
| +      const NetLogWithSource& net_log, | 
| const scoped_refptr<TransportSocketParams>* casted_params); | 
|  | 
| private: | 
|  |