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

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

Issue 8383004: Adding CookieSettings for storing cookie content settings. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fixing the rebase. Created 9 years, 2 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/browser/profiles/profile_impl.cc ('k') | chrome/browser/profiles/profile_io_data.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/profiles/profile_io_data.h
diff --git a/chrome/browser/profiles/profile_io_data.h b/chrome/browser/profiles/profile_io_data.h
index 9787647ba2fe8252e300c365e9624ac0eae8ba52..9af7f84ca29d126e9bbf729622e5a9e186b50918 100644
--- a/chrome/browser/profiles/profile_io_data.h
+++ b/chrome/browser/profiles/profile_io_data.h
@@ -23,6 +23,7 @@
class CommandLine;
class ChromeAppCacheService;
class ChromeBlobStorageContext;
+class CookieSettings;
class DesktopNotificationService;
class ExtensionInfoMap;
class HostContentSettingsMap;
@@ -101,6 +102,7 @@ class ProfileIOData {
// that profile.
ExtensionInfoMap* GetExtensionInfoMap() const;
HostContentSettingsMap* GetHostContentSettingsMap() const;
+ CookieSettings* GetCookieSettings() const;
DesktopNotificationService* GetNotificationService() const;
BooleanPrefMember* clear_local_state_on_exit() const {
@@ -147,6 +149,7 @@ class ProfileIOData {
std::string referrer_charset;
IOThread* io_thread;
scoped_refptr<HostContentSettingsMap> host_content_settings_map;
+ scoped_refptr<CookieSettings> cookie_settings;
scoped_refptr<HostZoomMap> host_zoom_map;
scoped_refptr<net::SSLConfigService> ssl_config_service;
scoped_refptr<net::CookieMonster::Delegate> cookie_monster_delegate;
@@ -300,6 +303,7 @@ class ProfileIOData {
// TODO(willchan): Remove from ResourceContext.
mutable scoped_refptr<ExtensionInfoMap> extension_info_map_;
mutable scoped_refptr<HostContentSettingsMap> host_content_settings_map_;
+ mutable scoped_refptr<CookieSettings> cookie_settings_;
mutable DesktopNotificationService* notification_service_;
mutable ResourceContext resource_context_;
« no previous file with comments | « chrome/browser/profiles/profile_impl.cc ('k') | chrome/browser/profiles/profile_io_data.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698