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

Side by Side Diff: net/base/client_socket_factory.h

Issue 144009: Move socket related files from net/base to net/socket. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 11 years, 6 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « net/base/client_socket.cc ('k') | net/base/client_socket_factory.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #ifndef NET_BASE_CLIENT_SOCKET_FACTORY_H_
6 #define NET_BASE_CLIENT_SOCKET_FACTORY_H_
7
8 #include <string>
9
10 namespace net {
11
12 class AddressList;
13 class ClientSocket;
14 class SSLClientSocket;
15 struct SSLConfig;
16
17 // An interface used to instantiate ClientSocket objects. Used to facilitate
18 // testing code with mock socket implementations.
19 class ClientSocketFactory {
20 public:
21 virtual ~ClientSocketFactory() {}
22
23 virtual ClientSocket* CreateTCPClientSocket(
24 const AddressList& addresses) = 0;
25
26 virtual SSLClientSocket* CreateSSLClientSocket(
27 ClientSocket* transport_socket,
28 const std::string& hostname,
29 const SSLConfig& ssl_config) = 0;
30
31 // Returns the default ClientSocketFactory.
32 static ClientSocketFactory* GetDefaultFactory();
33 };
34
35 } // namespace net
36
37 #endif // NET_BASE_CLIENT_SOCKET_FACTORY_H_
OLDNEW
« no previous file with comments | « net/base/client_socket.cc ('k') | net/base/client_socket_factory.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698