| Index: net/url_request/url_request_context.h
|
| ===================================================================
|
| --- net/url_request/url_request_context.h (revision 103555)
|
| +++ net/url_request/url_request_context.h (working copy)
|
| @@ -29,6 +29,7 @@
|
| class FtpTransactionFactory;
|
| class HostResolver;
|
| class HttpAuthHandlerFactory;
|
| +class HttpServerProperties;
|
| class HttpTransactionFactory;
|
| class NetworkDelegate;
|
| class OriginBoundCertService;
|
| @@ -143,6 +144,14 @@
|
| }
|
| NetworkDelegate* network_delegate() const { return network_delegate_; }
|
|
|
| + void set_http_server_properties(
|
| + HttpServerProperties* http_server_properties) {
|
| + http_server_properties_ = http_server_properties;
|
| + }
|
| + HttpServerProperties* http_server_properties() const {
|
| + return http_server_properties_;
|
| + }
|
| +
|
| // Gets the cookie store for this context (may be null, in which case
|
| // cookies are not stored).
|
| CookieStore* cookie_store() const { return cookie_store_.get(); }
|
| @@ -213,6 +222,7 @@
|
| ProxyService* proxy_service_;
|
| scoped_refptr<SSLConfigService> ssl_config_service_;
|
| NetworkDelegate* network_delegate_;
|
| + HttpServerProperties* http_server_properties_;
|
| scoped_refptr<CookieStore> cookie_store_;
|
| TransportSecurityState* transport_security_state_;
|
| scoped_ptr<FtpAuthCache> ftp_auth_cache_;
|
|
|