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

Unified Diff: net/http/http_network_session.h

Issue 275953002: Remove HTTP pipelining support. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Merge Created 6 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/http/http_network_session.h
diff --git a/net/http/http_network_session.h b/net/http/http_network_session.h
index 04bd6ec241cf0ab0f0709188f6f361ee21a2d65a..9831aa7523cf82ecb1a07dd9c1ea41dc313fe24b 100644
--- a/net/http/http_network_session.h
+++ b/net/http/http_network_session.h
@@ -73,9 +73,7 @@ class NET_EXPORT HttpNetworkSession
base::WeakPtr<HttpServerProperties> http_server_properties;
NetLog* net_log;
HostMappingRules* host_mapping_rules;
- bool force_http_pipelining;
bool ignore_certificate_errors;
- bool http_pipelining_enabled;
uint16 testing_fixed_http_port;
uint16 testing_fixed_https_port;
bool force_spdy_single_domain;
@@ -173,15 +171,9 @@ class NET_EXPORT HttpNetworkSession
void CloseAllConnections();
void CloseIdleConnections();
- bool force_http_pipelining() const { return force_http_pipelining_; }
-
// Returns the original Params used to construct this session.
const Params& params() const { return params_; }
- void set_http_pipelining_enabled(bool enable) {
- params_.http_pipelining_enabled = enable;
- }
-
private:
friend class base::RefCounted<HttpNetworkSession>;
friend class HttpNetworkSessionPeer;
@@ -195,7 +187,6 @@ class NET_EXPORT HttpNetworkSession
const base::WeakPtr<HttpServerProperties> http_server_properties_;
CertVerifier* const cert_verifier_;
HttpAuthHandlerFactory* const http_auth_handler_factory_;
- bool force_http_pipelining_;
// Not const since it's modified by HttpNetworkSessionPeer for testing.
ProxyService* proxy_service_;

Powered by Google App Engine
This is Rietveld 408576698