Chromium Code Reviews| 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..6ee83d075738bb8444806b71ddab9fa337d2fb5a 100644 |
| --- a/net/http/http_network_session.h |
| +++ b/net/http/http_network_session.h |
| @@ -62,6 +62,11 @@ class NET_EXPORT HttpNetworkSession |
| HttpServerProperties* http_server_properties; |
| NetLog* net_log; |
| bool force_http_pipelining; |
| + bool ignore_certificate_errors; |
| + HostMappingRules* host_mapping_rules; |
|
mmenke
2012/08/23 18:11:28
nit: Please put the HostMappingRules up with the
|
| + 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; |