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_STREAM_FACTORY_IMPL_JOB_H_ | 5 #ifndef NET_HTTP_HTTP_STREAM_FACTORY_IMPL_JOB_H_ |
6 #define NET_HTTP_HTTP_STREAM_FACTORY_IMPL_JOB_H_ | 6 #define NET_HTTP_HTTP_STREAM_FACTORY_IMPL_JOB_H_ |
7 | 7 |
8 #include "base/memory/ref_counted.h" | 8 #include "base/memory/ref_counted.h" |
9 #include "base/memory/scoped_ptr.h" | 9 #include "base/memory/scoped_ptr.h" |
10 #include "base/memory/weak_ptr.h" | 10 #include "base/memory/weak_ptr.h" |
11 #include "net/base/completion_callback.h" | 11 #include "net/base/completion_callback.h" |
12 #include "net/base/net_log.h" | 12 #include "net/base/net_log.h" |
13 #include "net/base/ssl_config_service.h" | |
14 #include "net/http/http_auth.h" | 13 #include "net/http/http_auth.h" |
15 #include "net/http/http_auth_controller.h" | 14 #include "net/http/http_auth_controller.h" |
16 #include "net/http/http_pipelined_host.h" | 15 #include "net/http/http_pipelined_host.h" |
17 #include "net/http/http_request_info.h" | 16 #include "net/http/http_request_info.h" |
18 #include "net/http/http_stream_factory_impl.h" | 17 #include "net/http/http_stream_factory_impl.h" |
19 #include "net/proxy/proxy_service.h" | 18 #include "net/proxy/proxy_service.h" |
20 #include "net/quic/quic_stream_factory.h" | 19 #include "net/quic/quic_stream_factory.h" |
21 #include "net/socket/client_socket_handle.h" | 20 #include "net/socket/client_socket_handle.h" |
22 #include "net/socket/ssl_client_socket.h" | 21 #include "net/socket/ssl_client_socket.h" |
| 22 #include "net/ssl/ssl_config_service.h" |
23 | 23 |
24 namespace net { | 24 namespace net { |
25 | 25 |
26 class ClientSocketHandle; | 26 class ClientSocketHandle; |
27 class HttpAuthController; | 27 class HttpAuthController; |
28 class HttpNetworkSession; | 28 class HttpNetworkSession; |
29 class HttpStream; | 29 class HttpStream; |
30 class SpdySessionPool; | 30 class SpdySessionPool; |
31 class QuicHttpStream; | 31 class QuicHttpStream; |
32 | 32 |
(...skipping 282 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
315 bool existing_available_pipeline_; | 315 bool existing_available_pipeline_; |
316 | 316 |
317 base::WeakPtrFactory<Job> ptr_factory_; | 317 base::WeakPtrFactory<Job> ptr_factory_; |
318 | 318 |
319 DISALLOW_COPY_AND_ASSIGN(Job); | 319 DISALLOW_COPY_AND_ASSIGN(Job); |
320 }; | 320 }; |
321 | 321 |
322 } // namespace net | 322 } // namespace net |
323 | 323 |
324 #endif // NET_HTTP_HTTP_STREAM_FACTORY_IMPL_JOB_H_ | 324 #endif // NET_HTTP_HTTP_STREAM_FACTORY_IMPL_JOB_H_ |
OLD | NEW |