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 #pragma once | 7 #pragma once |
8 | 8 |
9 #include <map> | 9 #include <map> |
10 #include <list> | 10 #include <list> |
11 #include <string> | 11 #include <string> |
12 | 12 |
13 #include "base/basictypes.h" | 13 #include "base/basictypes.h" |
14 #include "base/gtest_prod_util.h" | 14 #include "base/gtest_prod_util.h" |
15 #include "base/memory/ref_counted.h" | 15 #include "base/memory/ref_counted.h" |
16 #include "base/memory/scoped_ptr.h" | |
17 #include "net/base/cert_database.h" | 16 #include "net/base/cert_database.h" |
18 #include "net/base/host_port_pair.h" | 17 #include "net/base/host_port_pair.h" |
19 #include "net/base/ip_endpoint.h" | 18 #include "net/base/ip_endpoint.h" |
20 #include "net/base/net_errors.h" | 19 #include "net/base/net_errors.h" |
21 #include "net/base/net_export.h" | 20 #include "net/base/net_export.h" |
22 #include "net/base/network_change_notifier.h" | 21 #include "net/base/network_change_notifier.h" |
23 #include "net/base/ssl_config_service.h" | 22 #include "net/base/ssl_config_service.h" |
24 #include "net/proxy/proxy_config.h" | 23 #include "net/proxy/proxy_config.h" |
25 #include "net/proxy/proxy_server.h" | 24 #include "net/proxy/proxy_server.h" |
26 | 25 |
(...skipping 185 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
212 // This SPDY proxy is allowed to push resources from origins that are | 211 // This SPDY proxy is allowed to push resources from origins that are |
213 // different from those of their associated streams. | 212 // different from those of their associated streams. |
214 HostPortPair trusted_spdy_proxy_; | 213 HostPortPair trusted_spdy_proxy_; |
215 | 214 |
216 DISALLOW_COPY_AND_ASSIGN(SpdySessionPool); | 215 DISALLOW_COPY_AND_ASSIGN(SpdySessionPool); |
217 }; | 216 }; |
218 | 217 |
219 } // namespace net | 218 } // namespace net |
220 | 219 |
221 #endif // NET_SPDY_SPDY_SESSION_POOL_H_ | 220 #endif // NET_SPDY_SPDY_SESSION_POOL_H_ |
OLD | NEW |