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 | 7 |
8 #include <set> | 8 #include <set> |
9 #include "base/memory/ref_counted.h" | 9 #include "base/memory/ref_counted.h" |
10 #include "base/threading/non_thread_safe.h" | 10 #include "base/threading/non_thread_safe.h" |
11 #include "net/base/host_port_pair.h" | 11 #include "net/base/host_port_pair.h" |
12 #include "net/base/host_resolver.h" | |
13 #include "net/base/net_export.h" | 12 #include "net/base/net_export.h" |
| 13 #include "net/dns/host_resolver.h" |
14 #include "net/http/http_auth_cache.h" | 14 #include "net/http/http_auth_cache.h" |
15 #include "net/http/http_stream_factory.h" | 15 #include "net/http/http_stream_factory.h" |
16 #include "net/quic/quic_stream_factory.h" | 16 #include "net/quic/quic_stream_factory.h" |
17 #include "net/spdy/spdy_session_pool.h" | 17 #include "net/spdy/spdy_session_pool.h" |
18 #include "net/ssl/ssl_client_auth_cache.h" | 18 #include "net/ssl/ssl_client_auth_cache.h" |
19 | 19 |
20 namespace base { | 20 namespace base { |
21 class Value; | 21 class Value; |
22 } | 22 } |
23 | 23 |
(...skipping 165 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
189 SpdySessionPool spdy_session_pool_; | 189 SpdySessionPool spdy_session_pool_; |
190 scoped_ptr<HttpStreamFactory> http_stream_factory_; | 190 scoped_ptr<HttpStreamFactory> http_stream_factory_; |
191 std::set<HttpResponseBodyDrainer*> response_drainers_; | 191 std::set<HttpResponseBodyDrainer*> response_drainers_; |
192 | 192 |
193 Params params_; | 193 Params params_; |
194 }; | 194 }; |
195 | 195 |
196 } // namespace net | 196 } // namespace net |
197 | 197 |
198 #endif // NET_HTTP_HTTP_NETWORK_SESSION_H_ | 198 #endif // NET_HTTP_HTTP_NETWORK_SESSION_H_ |
OLD | NEW |