| 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 11 matching lines...) Expand all Loading... |
| 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; | 31 class AddressList; |
| 32 class NetLogWithSource; | |
| 33 class ClientSocketHandle; | 32 class ClientSocketHandle; |
| 34 class HostResolver; | 33 class HostResolver; |
| 35 class HttpServerProperties; | 34 class HttpServerProperties; |
| 35 class NetLogWithSource; |
| 36 class ProxyDelegate; | 36 class ProxyDelegate; |
| 37 class SpdySession; | 37 class SpdySession; |
| 38 class TransportSecurityState; | 38 class TransportSecurityState; |
| 39 | 39 |
| 40 // This is a very simple pool for open SpdySessions. | 40 // This is a very simple pool for open SpdySessions. |
| 41 class NET_EXPORT SpdySessionPool | 41 class NET_EXPORT SpdySessionPool |
| 42 : public NetworkChangeNotifier::IPAddressObserver, | 42 : public NetworkChangeNotifier::IPAddressObserver, |
| 43 public SSLConfigService::Observer, | 43 public SSLConfigService::Observer, |
| 44 public CertDatabase::Observer { | 44 public CertDatabase::Observer { |
| 45 public: | 45 public: |
| (...skipping 183 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 229 // resources from origins that are different from those of their associated | 229 // resources from origins that are different from those of their associated |
| 230 // streams. May be nullptr. | 230 // streams. May be nullptr. |
| 231 ProxyDelegate* proxy_delegate_; | 231 ProxyDelegate* proxy_delegate_; |
| 232 | 232 |
| 233 DISALLOW_COPY_AND_ASSIGN(SpdySessionPool); | 233 DISALLOW_COPY_AND_ASSIGN(SpdySessionPool); |
| 234 }; | 234 }; |
| 235 | 235 |
| 236 } // namespace net | 236 } // namespace net |
| 237 | 237 |
| 238 #endif // NET_SPDY_SPDY_SESSION_POOL_H_ | 238 #endif // NET_SPDY_SPDY_SESSION_POOL_H_ |
| OLD | NEW |