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_HTTP_HTTP_NETWORK_SESSION_H_ | 5 #ifndef NET_HTTP_HTTP_NETWORK_SESSION_H_ |
6 #define NET_HTTP_HTTP_NETWORK_SESSION_H_ | 6 #define NET_HTTP_HTTP_NETWORK_SESSION_H_ |
7 #pragma once | 7 #pragma once |
8 | 8 |
9 #include <set> | 9 #include <set> |
10 #include "base/memory/ref_counted.h" | 10 #include "base/memory/ref_counted.h" |
11 #include "base/threading/non_thread_safe.h" | 11 #include "base/threading/non_thread_safe.h" |
12 #include "net/base/host_port_pair.h" | 12 #include "net/base/host_port_pair.h" |
13 #include "net/base/host_resolver.h" | 13 #include "net/base/host_resolver.h" |
14 #include "net/base/net_export.h" | 14 #include "net/base/net_export.h" |
15 #include "net/base/ssl_client_auth_cache.h" | 15 #include "net/base/ssl_client_auth_cache.h" |
16 #include "net/http/http_auth_cache.h" | 16 #include "net/http/http_auth_cache.h" |
17 #include "net/http/http_stream_factory.h" | 17 #include "net/http/http_stream_factory.h" |
18 #include "net/spdy/spdy_session_pool.h" | 18 #include "net/spdy/spdy_session_pool.h" |
19 #include "net/spdy/spdy_settings_storage.h" | |
20 | 19 |
21 namespace base { | 20 namespace base { |
22 class Value; | 21 class Value; |
23 } | 22 } |
24 | 23 |
25 namespace net { | 24 namespace net { |
26 | 25 |
27 class CertVerifier; | 26 class CertVerifier; |
28 class ClientSocketFactory; | 27 class ClientSocketFactory; |
29 class ClientSocketPoolManager; | 28 class ClientSocketPoolManager; |
(...skipping 142 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
172 SpdySessionPool spdy_session_pool_; | 171 SpdySessionPool spdy_session_pool_; |
173 scoped_ptr<HttpStreamFactory> http_stream_factory_; | 172 scoped_ptr<HttpStreamFactory> http_stream_factory_; |
174 std::set<HttpResponseBodyDrainer*> response_drainers_; | 173 std::set<HttpResponseBodyDrainer*> response_drainers_; |
175 | 174 |
176 Params params_; | 175 Params params_; |
177 }; | 176 }; |
178 | 177 |
179 } // namespace net | 178 } // namespace net |
180 | 179 |
181 #endif // NET_HTTP_HTTP_NETWORK_SESSION_H_ | 180 #endif // NET_HTTP_HTTP_NETWORK_SESSION_H_ |
OLD | NEW |