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

Unified Diff: net/http/http_network_session.cc

Issue 7289006: Basic HTTP pipelining support (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Change pool API Created 9 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
Index: net/http/http_network_session.cc
diff --git a/net/http/http_network_session.cc b/net/http/http_network_session.cc
index b5a104d3aa95e71c7441a50c5f871db2e5d453fc..89342a3e2048a1555c5632b2073ae02d30c90aae 100644
--- a/net/http/http_network_session.cc
+++ b/net/http/http_network_session.cc
@@ -43,7 +43,8 @@ HttpNetworkSession::HttpNetworkSession(const Params& params)
params.ssl_config_service),
spdy_session_pool_(params.host_resolver, params.ssl_config_service),
ALLOW_THIS_IN_INITIALIZER_LIST(http_stream_factory_(
- new HttpStreamFactoryImpl(this))) {
+ new HttpStreamFactoryImpl(this))),
+ http_pipelined_host_pool_(http_stream_factory_.get()) {
DCHECK(params.proxy_service);
DCHECK(params.ssl_config_service);
}

Powered by Google App Engine
This is Rietveld 408576698