OLD | NEW |
1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. | 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 | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #ifndef NET_BASE_CLIENT_SOCKET_FACTORY_H_ | 5 #ifndef NET_SOCKET_CLIENT_SOCKET_FACTORY_H_ |
6 #define NET_BASE_CLIENT_SOCKET_FACTORY_H_ | 6 #define NET_SOCKET_CLIENT_SOCKET_FACTORY_H_ |
7 | 7 |
8 #include <string> | 8 #include <string> |
9 | 9 |
10 namespace net { | 10 namespace net { |
11 | 11 |
12 class AddressList; | 12 class AddressList; |
13 class ClientSocket; | 13 class ClientSocket; |
14 class SSLClientSocket; | 14 class SSLClientSocket; |
15 struct SSLConfig; | 15 struct SSLConfig; |
16 | 16 |
(...skipping 10 matching lines...) Expand all Loading... |
27 ClientSocket* transport_socket, | 27 ClientSocket* transport_socket, |
28 const std::string& hostname, | 28 const std::string& hostname, |
29 const SSLConfig& ssl_config) = 0; | 29 const SSLConfig& ssl_config) = 0; |
30 | 30 |
31 // Returns the default ClientSocketFactory. | 31 // Returns the default ClientSocketFactory. |
32 static ClientSocketFactory* GetDefaultFactory(); | 32 static ClientSocketFactory* GetDefaultFactory(); |
33 }; | 33 }; |
34 | 34 |
35 } // namespace net | 35 } // namespace net |
36 | 36 |
37 #endif // NET_BASE_CLIENT_SOCKET_FACTORY_H_ | 37 #endif // NET_SOCKET_CLIENT_SOCKET_FACTORY_H_ |
OLD | NEW |