Chromium Code Reviews

Unified Diff: net/http/http_stream_factory.cc

Issue 7289006: Basic HTTP pipelining support (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Better Close() handling and tests Created 9 years, 4 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
Index: net/http/http_stream_factory.cc
diff --git a/net/http/http_stream_factory.cc b/net/http/http_stream_factory.cc
index e5ffc260ac83ad05a40cda6ecc3ca4118ed96b19..89f208511b3fa1b6f42d03b7d73a49032ff1ca72 100644
--- a/net/http/http_stream_factory.cc
+++ b/net/http/http_stream_factory.cc
@@ -30,6 +30,8 @@ bool HttpStreamFactory::force_spdy_always_ = false;
std::list<HostPortPair>* HttpStreamFactory::forced_spdy_exclusions_ = NULL;
// static
bool HttpStreamFactory::ignore_certificate_errors_ = false;
+// static
+bool HttpStreamFactory::http_pipelining_enabled_ = false;
HttpStreamFactory::~HttpStreamFactory() {}

Powered by Google App Engine