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

Side by Side Diff: net/socket/ssl_client_socket_pool.h

Issue 8525020: Cleanup: Remove unneeded forward declararations in net. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 9 years, 1 month 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/socket/client_socket_factory.h ('k') | net/socket/ssl_server_socket.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 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_SOCKET_SSL_CLIENT_SOCKET_POOL_H_ 5 #ifndef NET_SOCKET_SSL_CLIENT_SOCKET_POOL_H_
6 #define NET_SOCKET_SSL_CLIENT_SOCKET_POOL_H_ 6 #define NET_SOCKET_SSL_CLIENT_SOCKET_POOL_H_
7 #pragma once 7 #pragma once
8 8
9 #include <string> 9 #include <string>
10 10
(...skipping 18 matching lines...) Expand all
29 class DnsRRResolver; 29 class DnsRRResolver;
30 class HostPortPair; 30 class HostPortPair;
31 class HttpProxyClientSocketPool; 31 class HttpProxyClientSocketPool;
32 class HttpProxySocketParams; 32 class HttpProxySocketParams;
33 class SOCKSClientSocketPool; 33 class SOCKSClientSocketPool;
34 class SOCKSSocketParams; 34 class SOCKSSocketParams;
35 class SSLClientSocket; 35 class SSLClientSocket;
36 class SSLHostInfoFactory; 36 class SSLHostInfoFactory;
37 class TransportSocketParams; 37 class TransportSocketParams;
38 class TransportClientSocketPool; 38 class TransportClientSocketPool;
39 struct RRResponse;
40 39
41 // SSLSocketParams only needs the socket params for the transport socket 40 // SSLSocketParams only needs the socket params for the transport socket
42 // that will be used (denoted by |proxy|). 41 // that will be used (denoted by |proxy|).
43 class NET_EXPORT_PRIVATE SSLSocketParams 42 class NET_EXPORT_PRIVATE SSLSocketParams
44 : public base::RefCounted<SSLSocketParams> { 43 : public base::RefCounted<SSLSocketParams> {
45 public: 44 public:
46 SSLSocketParams(const scoped_refptr<TransportSocketParams>& transport_params, 45 SSLSocketParams(const scoped_refptr<TransportSocketParams>& transport_params,
47 const scoped_refptr<SOCKSSocketParams>& socks_params, 46 const scoped_refptr<SOCKSSocketParams>& socks_params,
48 const scoped_refptr<HttpProxySocketParams>& http_proxy_params, 47 const scoped_refptr<HttpProxySocketParams>& http_proxy_params,
49 ProxyServer::Scheme proxy, 48 ProxyServer::Scheme proxy,
(...skipping 231 matching lines...) Expand 10 before | Expand all | Expand 10 after
281 const scoped_refptr<SSLConfigService> ssl_config_service_; 280 const scoped_refptr<SSLConfigService> ssl_config_service_;
282 281
283 DISALLOW_COPY_AND_ASSIGN(SSLClientSocketPool); 282 DISALLOW_COPY_AND_ASSIGN(SSLClientSocketPool);
284 }; 283 };
285 284
286 REGISTER_SOCKET_PARAMS_FOR_POOL(SSLClientSocketPool, SSLSocketParams); 285 REGISTER_SOCKET_PARAMS_FOR_POOL(SSLClientSocketPool, SSLSocketParams);
287 286
288 } // namespace net 287 } // namespace net
289 288
290 #endif // NET_SOCKET_SSL_CLIENT_SOCKET_POOL_H_ 289 #endif // NET_SOCKET_SSL_CLIENT_SOCKET_POOL_H_
OLDNEW
« no previous file with comments | « net/socket/client_socket_factory.h ('k') | net/socket/ssl_server_socket.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698