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

Unified Diff: jingle/notifier/base/xmpp_connection.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_connection.cc
diff --git a/jingle/notifier/base/xmpp_connection.cc b/jingle/notifier/base/xmpp_connection.cc
index a347d893811cb29e8dff2ea9ebc0fa70ecafee18..86138dda17f3776c511d4aba85bed6a751615f2c 100644
--- a/jingle/notifier/base/xmpp_connection.cc
+++ b/jingle/notifier/base/xmpp_connection.cc
@@ -32,8 +32,6 @@ buzz::AsyncSocket* CreateSocket(
// XmppSocketAdapter.
const size_t kReadBufSize = 64U * 1024U;
const size_t kWriteBufSize = 64U * 1024U;
- net::NetLog* const net_log =
- request_context_getter->GetURLRequestContext()->net_log();
XmppClientSocketFactory* const client_socket_factory =
new XmppClientSocketFactory(
net::ClientSocketFactory::GetDefaultFactory(),
@@ -41,7 +39,7 @@ buzz::AsyncSocket* CreateSocket(
request_context_getter,
use_fake_ssl_client_socket);
return new ChromeAsyncSocket(client_socket_factory,
- kReadBufSize, kWriteBufSize, net_log);
+ kReadBufSize, kWriteBufSize);
}
} // namespace

Powered by Google App Engine
This is Rietveld 408576698