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

Unified Diff: net/socket/client_socket_factory.cc

Issue 6800009: Attn: Mike Belshe Base URL: http://src.chromium.org/svn/trunk/src/
Patch Set: Created 9 years, 9 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: net/socket/client_socket_factory.cc
===================================================================
--- net/socket/client_socket_factory.cc (revision 80449)
+++ net/socket/client_socket_factory.cc (working copy)
@@ -8,6 +8,7 @@
#include "build/build_config.h"
#include "net/base/cert_database.h"
#include "net/socket/client_socket_handle.h"
+#include "net/socket/sctp_client_socket.h"
#if defined(OS_WIN)
#include "net/socket/ssl_client_socket_nss.h"
#include "net/socket/ssl_client_socket_win.h"
@@ -52,6 +53,13 @@
return new TCPClientSocket(addresses, net_log, source);
}
+ virtual ClientSocket* CreateSCTPClientSocket(
+ const AddressList& addresses,
+ NetLog* net_log,
Mike Belshe 2011/04/06 18:32:53 Hopefully we get agreement to rename this and then
+ const NetLog::Source& source) {
+ return new SCTPClientSocket(addresses, net_log, source);
+ }
+
virtual SSLClientSocket* CreateSSLClientSocket(
ClientSocketHandle* transport_socket,
const HostPortPair& host_and_port,

Powered by Google App Engine
This is Rietveld 408576698