Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(949)

Unified Diff: net/url_request/url_request_context_storage.h

Issue 1701063002: CookieStore: Remove reference counting. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@threadsafe
Patch Set: merge Created 4 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « net/url_request/url_request_context_getter.h ('k') | net/url_request/url_request_context_storage.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/url_request/url_request_context_storage.h
diff --git a/net/url_request/url_request_context_storage.h b/net/url_request/url_request_context_storage.h
index 6669ae42ab2d68464f24ad8b6f67f1ca1949b08f..b888fb0c3ce492266518426c89977fa77d5fc5e3 100644
--- a/net/url_request/url_request_context_storage.h
+++ b/net/url_request/url_request_context_storage.h
@@ -59,7 +59,7 @@ class NET_EXPORT URLRequestContextStorage {
void set_proxy_delegate(scoped_ptr<ProxyDelegate> proxy_delegate);
void set_http_server_properties(
scoped_ptr<HttpServerProperties> http_server_properties);
- void set_cookie_store(CookieStore* cookie_store);
+ void set_cookie_store(scoped_ptr<CookieStore> cookie_store);
void set_transport_security_state(
scoped_ptr<TransportSecurityState> transport_security_state);
void set_http_network_session(
@@ -101,7 +101,7 @@ class NET_EXPORT URLRequestContextStorage {
scoped_ptr<ProxyDelegate> proxy_delegate_;
scoped_ptr<HttpServerProperties> http_server_properties_;
scoped_ptr<HttpUserAgentSettings> http_user_agent_settings_;
- scoped_refptr<CookieStore> cookie_store_;
+ scoped_ptr<CookieStore> cookie_store_;
scoped_ptr<TransportSecurityState> transport_security_state_;
// Not actually pointed at by the URLRequestContext, but may be used (but not
« no previous file with comments | « net/url_request/url_request_context_getter.h ('k') | net/url_request/url_request_context_storage.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698