diff options
Diffstat (limited to 'jingle/notifier/base/chrome_async_socket.cc')
-rw-r--r-- | jingle/notifier/base/chrome_async_socket.cc | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/jingle/notifier/base/chrome_async_socket.cc b/jingle/notifier/base/chrome_async_socket.cc index f3a5a77..61adadd 100644 --- a/jingle/notifier/base/chrome_async_socket.cc +++ b/jingle/notifier/base/chrome_async_socket.cc @@ -147,9 +147,8 @@ bool ChromeAsyncSocket::Connect(const talk_base::SocketAddress& address) { net::AddressList address_list = SocketAddressToAddressList(address); transport_socket_.reset( - client_socket_factory_->CreateTCPClientSocket(address_list, - bound_net_log_.net_log(), - net::NetLog::Source())); + client_socket_factory_->CreateTransportClientSocket( + address_list, bound_net_log_.net_log(), net::NetLog::Source())); int status = transport_socket_->Connect(&connect_callback_); if (status != net::ERR_IO_PENDING) { // We defer execution of ProcessConnectDone instead of calling it |