diff options
Diffstat (limited to 'jingle/notifier')
-rw-r--r-- | jingle/notifier/base/chrome_async_socket.cc | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/jingle/notifier/base/chrome_async_socket.cc b/jingle/notifier/base/chrome_async_socket.cc index 85929c1..dc8bc7e 100644 --- a/jingle/notifier/base/chrome_async_socket.cc +++ b/jingle/notifier/base/chrome_async_socket.cc @@ -147,8 +147,9 @@ 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())); + client_socket_factory_->CreateTCPClientSocket(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 |