Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(429)

Unified Diff: jingle/notifier/base/xmpp_client_socket_factory.cc

Issue 7014009: Pass net_log parameter properly for ProxyResolvingClientSocket (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: jingle/notifier/base/xmpp_client_socket_factory.cc
diff --git a/jingle/notifier/base/xmpp_client_socket_factory.cc b/jingle/notifier/base/xmpp_client_socket_factory.cc
index d3704f1903c69aa43e0559551efcf8f42e2b4c3a..0a0bb52519a7f2e7f3746b4ab6a0e7b479862d7c 100644
--- a/jingle/notifier/base/xmpp_client_socket_factory.cc
+++ b/jingle/notifier/base/xmpp_client_socket_factory.cc
@@ -28,12 +28,11 @@ XmppClientSocketFactory::XmppClientSocketFactory(
XmppClientSocketFactory::~XmppClientSocketFactory() {}
net::StreamSocket* XmppClientSocketFactory::CreateTransportClientSocket(
- const net::HostPortPair& host_and_port, net::NetLog* net_log) {
+ const net::HostPortPair& host_and_port) {
net::StreamSocket* transport_socket = new ProxyResolvingClientSocket(
request_context_getter_,
ssl_config_,
- host_and_port,
- net_log);
+ host_and_port);
return (use_fake_ssl_client_socket_ ?
new FakeSSLClientSocket(transport_socket) : transport_socket);
}

Powered by Google App Engine
This is Rietveld 408576698