| Index: net/socket/client_socket_factory.cc | 
| diff --git a/net/socket/client_socket_factory.cc b/net/socket/client_socket_factory.cc | 
| index c7597c5635c2737b10744775e8a3fe665102b41f..42daa5a52005d110d7ae917bcbeb8b1115881cff 100644 | 
| --- a/net/socket/client_socket_factory.cc | 
| +++ b/net/socket/client_socket_factory.cc | 
| @@ -10,7 +10,7 @@ | 
| #include "build/build_config.h" | 
| #include "net/cert/cert_database.h" | 
| #include "net/socket/client_socket_handle.h" | 
| -#include "net/socket/ssl_client_socket_openssl.h" | 
| +#include "net/socket/ssl_client_socket_impl.h" | 
| #include "net/socket/tcp_client_socket.h" | 
| #include "net/udp/udp_client_socket.h" | 
|  | 
| @@ -67,7 +67,7 @@ class DefaultClientSocketFactory : public ClientSocketFactory, | 
| const HostPortPair& host_and_port, | 
| const SSLConfig& ssl_config, | 
| const SSLClientSocketContext& context) override { | 
| -    return std::unique_ptr<SSLClientSocket>(new SSLClientSocketOpenSSL( | 
| +    return std::unique_ptr<SSLClientSocket>(new SSLClientSocketImpl( | 
| std::move(transport_socket), host_and_port, ssl_config, context)); | 
| } | 
|  | 
|  |