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

Unified Diff: chromecast/browser/url_request_context_factory.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 | « chrome/test/base/testing_profile.cc ('k') | chromecast/browser/url_request_context_factory.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chromecast/browser/url_request_context_factory.h
diff --git a/chromecast/browser/url_request_context_factory.h b/chromecast/browser/url_request_context_factory.h
index c0d881d83f9c01415761ff08ca15c79a80a8e0c2..31bbf14eccf3e38592307c6de8f8f78f78070282 100644
--- a/chromecast/browser/url_request_context_factory.h
+++ b/chromecast/browser/url_request_context_factory.h
@@ -9,6 +9,7 @@
#include "net/http/http_network_session.h"
namespace net {
+class CookieStore;
class HttpTransactionFactory;
class HttpUserAgentSettings;
class NetLog;
@@ -106,10 +107,12 @@ class URLRequestContextFactory {
scoped_ptr<net::HttpServerProperties> http_server_properties_;
scoped_ptr<net::HttpUserAgentSettings> http_user_agent_settings_;
scoped_ptr<net::HttpTransactionFactory> system_transaction_factory_;
+ scoped_ptr<net::CookieStore> system_cookie_store_;
scoped_ptr<net::URLRequestJobFactory> system_job_factory_;
bool main_dependencies_initialized_;
scoped_ptr<net::HttpTransactionFactory> main_transaction_factory_;
+ scoped_ptr<net::CookieStore> main_cookie_store_;
scoped_ptr<net::URLRequestJobFactory> main_job_factory_;
bool media_dependencies_initialized_;
« no previous file with comments | « chrome/test/base/testing_profile.cc ('k') | chromecast/browser/url_request_context_factory.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698