Index: net/url_request/url_request_context.h |
diff --git a/net/url_request/url_request_context.h b/net/url_request/url_request_context.h |
index 7aa3351d6d457fa755de8442e4fc75972bc9a9dc..1b00b0549a25aab89953e9ea7d16c14b18a9c2d0 100644 |
--- a/net/url_request/url_request_context.h |
+++ b/net/url_request/url_request_context.h |
@@ -137,10 +137,10 @@ class NET_EXPORT URLRequestContext |
NetworkDelegate* network_delegate() const { return network_delegate_; } |
void set_http_server_properties( |
- const base::WeakPtr<HttpServerProperties>& http_server_properties) { |
+ HttpServerProperties* http_server_properties) { |
http_server_properties_ = http_server_properties; |
} |
- base::WeakPtr<HttpServerProperties> http_server_properties() const { |
+ HttpServerProperties* http_server_properties() const { |
return http_server_properties_; |
} |
@@ -255,7 +255,7 @@ class NET_EXPORT URLRequestContext |
ProxyService* proxy_service_; |
scoped_refptr<SSLConfigService> ssl_config_service_; |
NetworkDelegate* network_delegate_; |
- base::WeakPtr<HttpServerProperties> http_server_properties_; |
+ HttpServerProperties* http_server_properties_; |
HttpUserAgentSettings* http_user_agent_settings_; |
CookieStore* cookie_store_; |
TransportSecurityState* transport_security_state_; |