| 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 bb1486e015708d925d0f8f31a46673ecb5a7c118..f51f5cb2263736ad06764956566f099eb90b1567 100644
|
| --- a/net/url_request/url_request_context.h
|
| +++ b/net/url_request/url_request_context.h
|
| @@ -145,7 +145,7 @@ class NET_EXPORT URLRequestContext
|
|
|
| // 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(); }
|
| + CookieStore* cookie_store() const { return cookie_store_; }
|
| void set_cookie_store(CookieStore* cookie_store);
|
|
|
| TransportSecurityState* transport_security_state() const {
|
| @@ -237,7 +237,7 @@ class NET_EXPORT URLRequestContext
|
| NetworkDelegate* network_delegate_;
|
| base::WeakPtr<HttpServerProperties> http_server_properties_;
|
| HttpUserAgentSettings* http_user_agent_settings_;
|
| - scoped_refptr<CookieStore> cookie_store_;
|
| + CookieStore* cookie_store_;
|
| TransportSecurityState* transport_security_state_;
|
| CTVerifier* cert_transparency_verifier_;
|
| HttpTransactionFactory* http_transaction_factory_;
|
|
|