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

Unified Diff: net/http/http_network_session.cc

Issue 517693002: Add embedder-specific headers to HTTP CONNECT tunnel request (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Reworked HaveAuth test Created 6 years, 3 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
« no previous file with comments | « net/http/http_network_session.h ('k') | net/http/http_network_transaction_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/http/http_network_session.cc
diff --git a/net/http/http_network_session.cc b/net/http/http_network_session.cc
index b7a4b747b08e8b85017c0ea50c68bb2d73df1069..0ef4d2b8761d1d5f8c1a67391edbf74010e1c880 100644
--- a/net/http/http_network_session.cc
+++ b/net/http/http_network_session.cc
@@ -50,6 +50,7 @@ net::ClientSocketPoolManager* CreateSocketPoolManager(
params.proxy_service,
params.ssl_config_service,
params.enable_ssl_connect_job_waiting,
+ params.proxy_delegate,
pool_type);
}
@@ -96,7 +97,8 @@ HttpNetworkSession::Params::Params()
quic_random(NULL),
quic_max_packet_length(kDefaultMaxPacketSize),
enable_user_alternate_protocol_ports(false),
- quic_crypto_client_stream_factory(NULL) {
+ quic_crypto_client_stream_factory(NULL),
+ proxy_delegate(NULL) {
quic_supported_versions.push_back(QUIC_VERSION_19);
}
« no previous file with comments | « net/http/http_network_session.h ('k') | net/http/http_network_transaction_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698