| OLD | NEW |
| 1 // Copyright (c) 2016 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2016 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_CONTROLLER_H_ | 5 #ifndef NET_HTTP_HTTP_STREAM_FACTORY_IMPL_JOB_CONTROLLER_H_ |
| 6 #define NET_HTTP_HTTP_STREAM_FACTORY_IMPL_JOB_CONTROLLER_H_ | 6 #define NET_HTTP_HTTP_STREAM_FACTORY_IMPL_JOB_CONTROLLER_H_ |
| 7 | 7 |
| 8 #include "net/base/host_port_pair.h" | 8 #include "net/base/host_port_pair.h" |
| 9 #include "net/http/http_stream_factory_impl_job.h" | 9 #include "net/http/http_stream_factory_impl_job.h" |
| 10 #include "net/http/http_stream_factory_impl_request.h" | 10 #include "net/http/http_stream_factory_impl_request.h" |
| (...skipping 151 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 162 void RemoveRequestFromSpdySessionRequestMapForJob(Job* job) override; | 162 void RemoveRequestFromSpdySessionRequestMapForJob(Job* job) override; |
| 163 const NetLogWithSource* GetNetLog(Job* job) const override; | 163 const NetLogWithSource* GetNetLog(Job* job) const override; |
| 164 | 164 |
| 165 void MaybeSetWaitTimeForMainJob(const base::TimeDelta& delay) override; | 165 void MaybeSetWaitTimeForMainJob(const base::TimeDelta& delay) override; |
| 166 | 166 |
| 167 WebSocketHandshakeStreamBase::CreateHelper* | 167 WebSocketHandshakeStreamBase::CreateHelper* |
| 168 websocket_handshake_stream_create_helper() override; | 168 websocket_handshake_stream_create_helper() override; |
| 169 | 169 |
| 170 bool is_preconnect() const { return is_preconnect_; } | 170 bool is_preconnect() const { return is_preconnect_; } |
| 171 | 171 |
| 172 // Returns whether |this| has a pending alternative job that is yet to |
| 173 // complete. |
| 174 bool HasPendingAltJob() const; |
| 175 |
| 172 private: | 176 private: |
| 173 friend class JobControllerPeer; | 177 friend class JobControllerPeer; |
| 174 | 178 |
| 175 // Creates Job(s) for |request_|. Job(s) will be owned by |this|. | 179 // Creates Job(s) for |request_|. Job(s) will be owned by |this|. |
| 176 void CreateJobs(const HttpRequestInfo& request_info, | 180 void CreateJobs(const HttpRequestInfo& request_info, |
| 177 RequestPriority priority, | 181 RequestPriority priority, |
| 178 const SSLConfig& server_ssl_config, | 182 const SSLConfig& server_ssl_config, |
| 179 const SSLConfig& proxy_ssl_config, | 183 const SSLConfig& proxy_ssl_config, |
| 180 HttpStreamRequest::Delegate* delegate, | 184 HttpStreamRequest::Delegate* delegate, |
| 181 HttpStreamRequest::StreamType stream_type, | 185 HttpStreamRequest::StreamType stream_type, |
| (...skipping 119 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 301 | 305 |
| 302 // True if an alternative proxy server job can be started to fetch |request_|. | 306 // True if an alternative proxy server job can be started to fetch |request_|. |
| 303 bool can_start_alternative_proxy_job_; | 307 bool can_start_alternative_proxy_job_; |
| 304 | 308 |
| 305 base::WeakPtrFactory<JobController> ptr_factory_; | 309 base::WeakPtrFactory<JobController> ptr_factory_; |
| 306 }; | 310 }; |
| 307 | 311 |
| 308 } // namespace net | 312 } // namespace net |
| 309 | 313 |
| 310 #endif // NET_HTTP_HTTP_STREAM_FACTORY_IMPL_JOB_CONTROLLER_H_ | 314 #endif // NET_HTTP_HTTP_STREAM_FACTORY_IMPL_JOB_CONTROLLER_H_ |
| OLD | NEW |