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

Unified Diff: net/base/client_socket_factory.h

Issue 4013: Port more unit tests in net/http/ (Closed) Base URL: http://src.chromium.org/svn/trunk/src/
Patch Set: Created 12 years, 3 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
« no previous file with comments | « net/SConscript ('k') | net/base/client_socket_factory.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/base/client_socket_factory.h
===================================================================
--- net/base/client_socket_factory.h (revision 2439)
+++ net/base/client_socket_factory.h (working copy)
@@ -7,6 +7,8 @@
#include <string>
+#include "build/build_config.h"
+
namespace net {
class AddressList;
@@ -21,9 +23,12 @@
virtual ClientSocket* CreateTCPClientSocket(
const AddressList& addresses) = 0;
+// TODO(port): Enable when ssl_client socket is ported.
+#if defined(OS_WIN)
virtual ClientSocket* CreateSSLClientSocket(
ClientSocket* transport_socket,
const std::string& hostname) = 0;
+#endif
// Returns the default ClientSocketFactory.
static ClientSocketFactory* GetDefaultFactory();
« no previous file with comments | « net/SConscript ('k') | net/base/client_socket_factory.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698