Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(78)

Side by Side Diff: net/http/http_stream_factory_impl_job_controller.h

Issue 2707053006: Allow a preconnecting job to a HTTP2 proxy server based on privacy mode (Closed)
Patch Set: Created 3 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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/base/privacy_mode.h"
9 #include "net/http/http_stream_factory_impl_job.h" 10 #include "net/http/http_stream_factory_impl_job.h"
10 #include "net/http/http_stream_factory_impl_request.h" 11 #include "net/http/http_stream_factory_impl_request.h"
11 12
12 namespace net { 13 namespace net {
13 14
14 class NetLogWithSource; 15 class NetLogWithSource;
15 16
16 // HttpStreamFactoryImpl::JobController manages Request and Job(s). 17 // HttpStreamFactoryImpl::JobController manages Request and Job(s).
17 class HttpStreamFactoryImpl::JobController 18 class HttpStreamFactoryImpl::JobController
18 : public HttpStreamFactoryImpl::Job::Delegate, 19 : public HttpStreamFactoryImpl::Job::Delegate,
(...skipping 280 matching lines...) Expand 10 before | Expand all | Expand 10 after
299 // Waiting time for the main job before it is resumed. 300 // Waiting time for the main job before it is resumed.
300 base::TimeDelta main_job_wait_time_; 301 base::TimeDelta main_job_wait_time_;
301 302
302 // At the point where a Job is irrevocably tied to |request_|, we set this. 303 // At the point where a Job is irrevocably tied to |request_|, we set this.
303 // It will be nulled when the |request_| is finished. 304 // It will be nulled when the |request_| is finished.
304 Job* bound_job_; 305 Job* bound_job_;
305 306
306 // True if an alternative proxy server job can be started to fetch |request_|. 307 // True if an alternative proxy server job can be started to fetch |request_|.
307 bool can_start_alternative_proxy_job_; 308 bool can_start_alternative_proxy_job_;
308 309
310 // Privacy mode that should be used for fetching the resource.
311 PrivacyMode privacy_mode_;
312
309 base::WeakPtrFactory<JobController> ptr_factory_; 313 base::WeakPtrFactory<JobController> ptr_factory_;
310 }; 314 };
311 315
312 } // namespace net 316 } // namespace net
313 317
314 #endif // NET_HTTP_HTTP_STREAM_FACTORY_IMPL_JOB_CONTROLLER_H_ 318 #endif // NET_HTTP_HTTP_STREAM_FACTORY_IMPL_JOB_CONTROLLER_H_
OLDNEW
« no previous file with comments | « net/http/http_stream_factory_impl.cc ('k') | net/http/http_stream_factory_impl_job_controller.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698