Index: net/http/http_network_session.h |
diff --git a/net/http/http_network_session.h b/net/http/http_network_session.h |
index 3a9d72cc5fcf1498eaffde9acadae305ffe5c235..47abaec02872045b4e5c80959f36b1da55d892c4 100644 |
--- a/net/http/http_network_session.h |
+++ b/net/http/http_network_session.h |
@@ -61,7 +61,12 @@ class NET_EXPORT HttpNetworkSession |
NetworkDelegate* network_delegate; |
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; |
std::string trusted_spdy_proxy; |
}; |
@@ -130,6 +135,10 @@ class NET_EXPORT HttpNetworkSession |
// 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; |