Chromium Code Reviews| Index: net/socket/client_socket_factory.h |
| =================================================================== |
| --- net/socket/client_socket_factory.h (revision 65819) |
| +++ net/socket/client_socket_factory.h (working copy) |
| @@ -8,6 +8,7 @@ |
| #include <string> |
| +#include "base/basictypes.h" |
| #include "net/base/net_log.h" |
| namespace net { |
| @@ -24,6 +25,7 @@ |
| typedef SSLClientSocket* (*SSLClientSocketFactory)( |
| ClientSocketHandle* transport_socket, |
| const std::string& hostname, |
| + uint16 port, |
| const SSLConfig& ssl_config, |
| SSLHostInfo* ssl_host_info, |
| DnsRRResolver* dnsrr_resolver); |
| @@ -44,6 +46,7 @@ |
| virtual SSLClientSocket* CreateSSLClientSocket( |
| ClientSocketHandle* transport_socket, |
| const std::string& hostname, |
| + uint16 port, |
|
eroman
2010/11/11 19:18:31
Please change the function signature to take a |co
|
| const SSLConfig& ssl_config, |
| SSLHostInfo* ssl_host_info, |
| DnsRRResolver* dnsrr_resolver) = 0; |
| @@ -51,6 +54,7 @@ |
| // Deprecated function (http://crbug.com/37810) that takes a ClientSocket. |
| virtual SSLClientSocket* CreateSSLClientSocket(ClientSocket* transport_socket, |
| const std::string& hostname, |
| + uint16 port, |
| const SSLConfig& ssl_config, |
| SSLHostInfo* ssl_host_info); |