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

Unified Diff: net/socket/client_socket_pool_manager.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. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: net/socket/client_socket_pool_manager.cc
diff --git a/net/socket/client_socket_pool_manager.cc b/net/socket/client_socket_pool_manager.cc
index fd02b02dbb1912dacce14dee989870ebe385d8de..1a002aee412d37acffd6c8fd12c68aca6677a706 100644
--- a/net/socket/client_socket_pool_manager.cc
+++ b/net/socket/client_socket_pool_manager.cc
@@ -156,16 +156,11 @@ int InitSocketPoolHelper(ClientSocketPoolManager::SocketGroupType group_type,
proxy_tcp_params = NULL;
}
- http_proxy_params =
- new HttpProxySocketParams(proxy_tcp_params,
- ssl_params,
- user_agent,
- origin_host_port,
- session->http_auth_cache(),
- session->http_auth_handler_factory(),
- session->spdy_session_pool(),
- force_tunnel || using_ssl,
- session->params().proxy_delegate);
+ http_proxy_params = new HttpProxySocketParams(
+ proxy_tcp_params, ssl_params, user_agent, origin_host_port,
+ session->http_auth_cache(), session->http_auth_handler_factory(),
+ session->spdy_session_pool(), force_tunnel || using_ssl,
+ session->context().proxy_delegate);
} else {
DCHECK(proxy_info.is_socks());
char socks_version;
« no previous file with comments | « net/quic/chromium/quic_network_transaction_unittest.cc ('k') | net/socket/ssl_client_socket_pool_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698