OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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_SPDY_SPDY_SESSION_POOL_H_ | 5 #ifndef NET_SPDY_SPDY_SESSION_POOL_H_ |
6 #define NET_SPDY_SPDY_SESSION_POOL_H_ | 6 #define NET_SPDY_SPDY_SESSION_POOL_H_ |
7 | 7 |
8 #include <stddef.h> | 8 #include <stddef.h> |
9 | 9 |
10 #include <map> | 10 #include <map> |
(...skipping 10 matching lines...) Expand all Loading... |
21 #include "net/base/net_export.h" | 21 #include "net/base/net_export.h" |
22 #include "net/base/network_change_notifier.h" | 22 #include "net/base/network_change_notifier.h" |
23 #include "net/cert/cert_database.h" | 23 #include "net/cert/cert_database.h" |
24 #include "net/proxy/proxy_config.h" | 24 #include "net/proxy/proxy_config.h" |
25 #include "net/proxy/proxy_server.h" | 25 #include "net/proxy/proxy_server.h" |
26 #include "net/spdy/spdy_session_key.h" | 26 #include "net/spdy/spdy_session_key.h" |
27 #include "net/ssl/ssl_config_service.h" | 27 #include "net/ssl/ssl_config_service.h" |
28 | 28 |
29 namespace net { | 29 namespace net { |
30 | 30 |
31 class AddressList; | |
32 class ClientSocketHandle; | 31 class ClientSocketHandle; |
33 class HostResolver; | 32 class HostResolver; |
34 class HttpServerProperties; | 33 class HttpServerProperties; |
35 class NetLogWithSource; | 34 class NetLogWithSource; |
36 class ProxyDelegate; | 35 class ProxyDelegate; |
37 class SpdySession; | 36 class SpdySession; |
38 class TransportSecurityState; | 37 class TransportSecurityState; |
39 | 38 |
40 // This is a very simple pool for open SpdySessions. | 39 // This is a very simple pool for open SpdySessions. |
41 class NET_EXPORT SpdySessionPool | 40 class NET_EXPORT SpdySessionPool |
(...skipping 181 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
223 // resources from origins that are different from those of their associated | 222 // resources from origins that are different from those of their associated |
224 // streams. May be nullptr. | 223 // streams. May be nullptr. |
225 ProxyDelegate* proxy_delegate_; | 224 ProxyDelegate* proxy_delegate_; |
226 | 225 |
227 DISALLOW_COPY_AND_ASSIGN(SpdySessionPool); | 226 DISALLOW_COPY_AND_ASSIGN(SpdySessionPool); |
228 }; | 227 }; |
229 | 228 |
230 } // namespace net | 229 } // namespace net |
231 | 230 |
232 #endif // NET_SPDY_SPDY_SESSION_POOL_H_ | 231 #endif // NET_SPDY_SPDY_SESSION_POOL_H_ |
OLD | NEW |