| 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 <list> |
| 8 #include <map> | 9 #include <map> |
| 9 #include <list> | |
| 10 #include <string> | 10 #include <string> |
| 11 | 11 |
| 12 #include "base/basictypes.h" | 12 #include "base/basictypes.h" |
| 13 #include "base/gtest_prod_util.h" | 13 #include "base/gtest_prod_util.h" |
| 14 #include "base/memory/ref_counted.h" | 14 #include "base/memory/ref_counted.h" |
| 15 #include "net/base/cert_database.h" | 15 #include "net/base/cert_database.h" |
| 16 #include "net/base/host_port_pair.h" | 16 #include "net/base/host_port_pair.h" |
| 17 #include "net/base/ip_endpoint.h" | 17 #include "net/base/ip_endpoint.h" |
| 18 #include "net/base/net_errors.h" | 18 #include "net/base/net_errors.h" |
| 19 #include "net/base/net_export.h" | 19 #include "net/base/net_export.h" |
| 20 #include "net/base/network_change_notifier.h" | 20 #include "net/base/network_change_notifier.h" |
| 21 #include "net/base/ssl_config_service.h" | |
| 22 #include "net/proxy/proxy_config.h" | 21 #include "net/proxy/proxy_config.h" |
| 23 #include "net/proxy/proxy_server.h" | 22 #include "net/proxy/proxy_server.h" |
| 24 #include "net/socket/next_proto.h" | 23 #include "net/socket/next_proto.h" |
| 24 #include "net/ssl/ssl_config_service.h" |
| 25 | 25 |
| 26 namespace net { | 26 namespace net { |
| 27 | 27 |
| 28 class AddressList; | 28 class AddressList; |
| 29 class BoundNetLog; | 29 class BoundNetLog; |
| 30 class ClientSocketHandle; | 30 class ClientSocketHandle; |
| 31 class HostResolver; | 31 class HostResolver; |
| 32 class HttpServerProperties; | 32 class HttpServerProperties; |
| 33 class SpdySession; | 33 class SpdySession; |
| 34 | 34 |
| (...skipping 186 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 221 // This SPDY proxy is allowed to push resources from origins that are | 221 // This SPDY proxy is allowed to push resources from origins that are |
| 222 // different from those of their associated streams. | 222 // different from those of their associated streams. |
| 223 HostPortPair trusted_spdy_proxy_; | 223 HostPortPair trusted_spdy_proxy_; |
| 224 | 224 |
| 225 DISALLOW_COPY_AND_ASSIGN(SpdySessionPool); | 225 DISALLOW_COPY_AND_ASSIGN(SpdySessionPool); |
| 226 }; | 226 }; |
| 227 | 227 |
| 228 } // namespace net | 228 } // namespace net |
| 229 | 229 |
| 230 #endif // NET_SPDY_SPDY_SESSION_POOL_H_ | 230 #endif // NET_SPDY_SPDY_SESSION_POOL_H_ |
| OLD | NEW |