Chromium Code Reviews

Unified Diff: net/http/http_stream_factory_impl_job_controller.cc

Issue 2907463002: Split HttpNetworkSession::Params into two structs. (Closed)
Patch Set: Response to comments Created 3 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
« no previous file with comments | « net/http/http_stream_factory_impl_job.cc ('k') | net/http/http_stream_factory_impl_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/http/http_stream_factory_impl_job_controller.cc
diff --git a/net/http/http_stream_factory_impl_job_controller.cc b/net/http/http_stream_factory_impl_job_controller.cc
index 986f9a36a9f4bf6215815d6a3b71b1acc59d26a6..6cbd70002115e1472ba5a9626e68cf3d9e761398 100644
--- a/net/http/http_stream_factory_impl_job_controller.cc
+++ b/net/http/http_stream_factory_impl_job_controller.cc
@@ -869,7 +869,7 @@ void HttpStreamFactoryImpl::JobController::ReportBrokenAlternativeService() {
}
if (failed_alternative_proxy_server_.is_valid()) {
- ProxyDelegate* proxy_delegate = session_->params().proxy_delegate;
+ ProxyDelegate* proxy_delegate = session_->context().proxy_delegate;
if (proxy_delegate) {
proxy_delegate->OnAlternativeProxyBroken(
failed_alternative_proxy_server_);
@@ -1081,7 +1081,7 @@ bool HttpStreamFactoryImpl::JobController::
return false;
}
- ProxyDelegate* proxy_delegate = session_->params().proxy_delegate;
+ ProxyDelegate* proxy_delegate = session_->context().proxy_delegate;
if (!proxy_delegate)
return false;
« no previous file with comments | « net/http/http_stream_factory_impl_job.cc ('k') | net/http/http_stream_factory_impl_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine