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

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

Issue 6800009: Attn: Mike Belshe Base URL: http://src.chromium.org/svn/trunk/src/
Patch Set: Created 9 years, 8 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
===================================================================
--- jingle/notifier/base/xmpp_client_socket_factory.cc (revision 80449)
+++ jingle/notifier/base/xmpp_client_socket_factory.cc (working copy)
@@ -30,6 +30,17 @@
new FakeSSLClientSocket(transport_socket) : transport_socket);
}
+net::ClientSocket* XmppClientSocketFactory::CreateSCTPClientSocket(
+ const net::AddressList& addresses,
+ net::NetLog* net_log,
+ const net::NetLog::Source& source) {
+ net::ClientSocket* transport_socket =
+ client_socket_factory_->CreateSCTPClientSocket(
+ addresses, net_log, source);
+ return (use_fake_ssl_client_socket_ ?
+ new FakeSSLClientSocket(transport_socket) : transport_socket);
+}
+
net::SSLClientSocket* XmppClientSocketFactory::CreateSSLClientSocket(
net::ClientSocketHandle* transport_socket,
const net::HostPortPair& host_and_port,

Powered by Google App Engine
This is Rietveld 408576698