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 <memory> | 8 #include <memory> |
9 #include <utility> | 9 #include <utility> |
10 | 10 |
(...skipping 22 matching lines...) Expand all Loading... |
33 | 33 |
34 namespace net { | 34 namespace net { |
35 | 35 |
36 class ClientSocketHandle; | 36 class ClientSocketHandle; |
37 class HttpAuthController; | 37 class HttpAuthController; |
38 class HttpNetworkSession; | 38 class HttpNetworkSession; |
39 class HttpStream; | 39 class HttpStream; |
40 class SpdySessionPool; | 40 class SpdySessionPool; |
41 class NetLog; | 41 class NetLog; |
42 struct SSLConfig; | 42 struct SSLConfig; |
43 class QuicHttpStream; | |
44 | 43 |
45 // An HttpStreamRequestImpl exists for each stream which is in progress of being | 44 // An HttpStreamRequestImpl exists for each stream which is in progress of being |
46 // created for the StreamFactory. | 45 // created for the StreamFactory. |
47 class HttpStreamFactoryImpl::Job { | 46 class HttpStreamFactoryImpl::Job { |
48 public: | 47 public: |
49 // Delegate to report Job's status to Request and HttpStreamFactory. | 48 // Delegate to report Job's status to Request and HttpStreamFactory. |
50 class NET_EXPORT_PRIVATE Delegate { | 49 class NET_EXPORT_PRIVATE Delegate { |
51 public: | 50 public: |
52 virtual ~Delegate() {} | 51 virtual ~Delegate() {} |
53 | 52 |
(...skipping 468 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
522 const SSLConfig& server_ssl_config, | 521 const SSLConfig& server_ssl_config, |
523 const SSLConfig& proxy_ssl_config, | 522 const SSLConfig& proxy_ssl_config, |
524 HostPortPair destination, | 523 HostPortPair destination, |
525 GURL origin_url, | 524 GURL origin_url, |
526 NetLog* net_log) = 0; | 525 NetLog* net_log) = 0; |
527 }; | 526 }; |
528 | 527 |
529 } // namespace net | 528 } // namespace net |
530 | 529 |
531 #endif // NET_HTTP_HTTP_STREAM_FACTORY_IMPL_JOB_H_ | 530 #endif // NET_HTTP_HTTP_STREAM_FACTORY_IMPL_JOB_H_ |
OLD | NEW |