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

Unified Diff: chrome/browser/profiles/profile_impl_io_data.h

Issue 1701063002: CookieStore: Remove reference counting. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@threadsafe
Patch Set: Fix Created 4 years, 10 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
Index: chrome/browser/profiles/profile_impl_io_data.h
diff --git a/chrome/browser/profiles/profile_impl_io_data.h b/chrome/browser/profiles/profile_impl_io_data.h
index f21e4eacf49c01817523fb46027e3f982a75c8af..ccdd27c0d494a98a52c710ef65201244fbf4592b 100644
--- a/chrome/browser/profiles/profile_impl_io_data.h
+++ b/chrome/browser/profiles/profile_impl_io_data.h
@@ -31,6 +31,7 @@ class DomainReliabilityMonitor;
namespace net {
class CookieCryptoDelegate;
+class CookieStore;
class FtpTransactionFactory;
class HttpNetworkSession;
class HttpServerProperties;
@@ -223,6 +224,9 @@ class ProfileImplIOData : public ProfileIOData {
// destruction ordering.
mutable net::HttpServerPropertiesManager* http_server_properties_manager_;
+ mutable scoped_ptr<net::CookieStore> main_cookie_store_;
+ mutable scoped_ptr<net::CookieStore> extensions_cookie_store_;
+
mutable scoped_ptr<chrome_browser_net::Predictor> predictor_;
mutable scoped_ptr<net::URLRequestContext> media_request_context_;

Powered by Google App Engine
This is Rietveld 408576698