| Index: net/socket/client_socket_factory.cc
 | 
| diff --git a/net/socket/client_socket_factory.cc b/net/socket/client_socket_factory.cc
 | 
| index 4f0557530d9fc63f33eec9fcccc7871934be0360..24d9e39c2a96bc66c4e6b2e2361b2bc10507890e 100644
 | 
| --- a/net/socket/client_socket_factory.cc
 | 
| +++ b/net/socket/client_socket_factory.cc
 | 
| @@ -1,4 +1,4 @@
 | 
| -// Copyright (c) 2006-2008 The Chromium Authors. All rights reserved.
 | 
| +// Copyright (c) 2010 The Chromium Authors. All rights reserved.
 | 
|  // Use of this source code is governed by a BSD-style license that can be
 | 
|  // found in the LICENSE file.
 | 
|  
 | 
| @@ -40,8 +40,8 @@ SSLClientSocketFactory g_ssl_factory = DefaultSSLClientSocketFactory;
 | 
|  class DefaultClientSocketFactory : public ClientSocketFactory {
 | 
|   public:
 | 
|    virtual ClientSocket* CreateTCPClientSocket(
 | 
| -      const AddressList& addresses) {
 | 
| -    return new TCPClientSocket(addresses);
 | 
| +      const AddressList& addresses, NetLog* net_log) {
 | 
| +    return new TCPClientSocket(addresses, net_log);
 | 
|    }
 | 
|  
 | 
|    virtual SSLClientSocket* CreateSSLClientSocket(
 | 
| 
 |