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

Side by Side Diff: chrome/browser/content_settings/cookie_settings.h

Issue 12079097: Introduce PrefRegistrySyncable, simplifying PrefServiceSyncable. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Merge to head again; base::File changes conflicted. Created 7 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef CHROME_BROWSER_CONTENT_SETTINGS_COOKIE_SETTINGS_H_ 5 #ifndef CHROME_BROWSER_CONTENT_SETTINGS_COOKIE_SETTINGS_H_
6 #define CHROME_BROWSER_CONTENT_SETTINGS_COOKIE_SETTINGS_H_ 6 #define CHROME_BROWSER_CONTENT_SETTINGS_COOKIE_SETTINGS_H_
7 7
8 #include <string> 8 #include <string>
9 9
10 #include "base/compiler_specific.h" 10 #include "base/compiler_specific.h"
11 #include "base/memory/ref_counted.h" 11 #include "base/memory/ref_counted.h"
12 #include "base/memory/singleton.h" 12 #include "base/memory/singleton.h"
13 #include "base/prefs/public/pref_change_registrar.h" 13 #include "base/prefs/public/pref_change_registrar.h"
14 #include "base/synchronization/lock.h" 14 #include "base/synchronization/lock.h"
15 #include "chrome/browser/content_settings/host_content_settings_map.h" 15 #include "chrome/browser/content_settings/host_content_settings_map.h"
16 #include "chrome/browser/profiles/refcounted_profile_keyed_service.h" 16 #include "chrome/browser/profiles/refcounted_profile_keyed_service.h"
17 #include "chrome/browser/profiles/refcounted_profile_keyed_service_factory.h" 17 #include "chrome/browser/profiles/refcounted_profile_keyed_service_factory.h"
18 #include "chrome/common/content_settings.h" 18 #include "chrome/common/content_settings.h"
19 19
20 class ContentSettingsPattern; 20 class ContentSettingsPattern;
21 class CookieSettingsWrapper; 21 class CookieSettingsWrapper;
22 class GURL; 22 class GURL;
23 class PrefService; 23 class PrefService;
24 class PrefServiceSyncable; 24 class PrefRegistrySyncable;
25 class Profile; 25 class Profile;
26 26
27 // A frontend to the cookie settings of |HostContentSettingsMap|. Handles 27 // A frontend to the cookie settings of |HostContentSettingsMap|. Handles
28 // cookie-specific logic such as blocking third-party cookies. Written on the UI 28 // cookie-specific logic such as blocking third-party cookies. Written on the UI
29 // thread and read on any thread. One instance per profile. 29 // thread and read on any thread. One instance per profile.
30 30
31 class CookieSettings 31 class CookieSettings
32 : public RefcountedProfileKeyedService { 32 : public RefcountedProfileKeyedService {
33 public: 33 public:
34 CookieSettings( 34 CookieSettings(
(...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after
95 // |Profile|. Afterwards, only const methods can be called. 95 // |Profile|. Afterwards, only const methods can be called.
96 virtual void ShutdownOnUIThread() OVERRIDE; 96 virtual void ShutdownOnUIThread() OVERRIDE;
97 97
98 // A helper for applying third party cookie blocking rules. 98 // A helper for applying third party cookie blocking rules.
99 ContentSetting GetCookieSetting( 99 ContentSetting GetCookieSetting(
100 const GURL& url, 100 const GURL& url,
101 const GURL& first_party_url, 101 const GURL& first_party_url,
102 bool setting_cookie, 102 bool setting_cookie,
103 content_settings::SettingSource* source) const; 103 content_settings::SettingSource* source) const;
104 104
105 static void RegisterUserPrefs(PrefServiceSyncable* prefs); 105 static void RegisterUserPrefs(PrefRegistrySyncable* registry);
106 106
107 class Factory : public RefcountedProfileKeyedServiceFactory { 107 class Factory : public RefcountedProfileKeyedServiceFactory {
108 public: 108 public:
109 // Returns the |CookieSettings| associated with the |profile|. 109 // Returns the |CookieSettings| associated with the |profile|.
110 // 110 //
111 // This should only be called on the UI thread. 111 // This should only be called on the UI thread.
112 static scoped_refptr<CookieSettings> GetForProfile(Profile* profile); 112 static scoped_refptr<CookieSettings> GetForProfile(Profile* profile);
113 113
114 static Factory* GetInstance(); 114 static Factory* GetInstance();
115 115
116 private: 116 private:
117 friend struct DefaultSingletonTraits<Factory>; 117 friend struct DefaultSingletonTraits<Factory>;
118 118
119 Factory(); 119 Factory();
120 virtual ~Factory(); 120 virtual ~Factory();
121 121
122 // |ProfileKeyedBaseFactory| methods: 122 // |ProfileKeyedBaseFactory| methods:
123 virtual void RegisterUserPrefs(PrefServiceSyncable* user_prefs) OVERRIDE; 123 virtual void RegisterUserPrefs(PrefRegistrySyncable* registry) OVERRIDE;
124 virtual bool ServiceRedirectedInIncognito() const OVERRIDE; 124 virtual bool ServiceRedirectedInIncognito() const OVERRIDE;
125 virtual scoped_refptr<RefcountedProfileKeyedService> 125 virtual scoped_refptr<RefcountedProfileKeyedService>
126 BuildServiceInstanceFor(Profile* profile) const OVERRIDE; 126 BuildServiceInstanceFor(Profile* profile) const OVERRIDE;
127 }; 127 };
128 128
129 private: 129 private:
130 virtual ~CookieSettings(); 130 virtual ~CookieSettings();
131 131
132 void OnBlockThirdPartyCookiesChanged(); 132 void OnBlockThirdPartyCookiesChanged();
133 133
134 // Returns true if the "block third party cookies" preference is set. 134 // Returns true if the "block third party cookies" preference is set.
135 // 135 //
136 // This method may be called on any thread. 136 // This method may be called on any thread.
137 bool ShouldBlockThirdPartyCookies() const; 137 bool ShouldBlockThirdPartyCookies() const;
138 138
139 scoped_refptr<HostContentSettingsMap> host_content_settings_map_; 139 scoped_refptr<HostContentSettingsMap> host_content_settings_map_;
140 PrefChangeRegistrar pref_change_registrar_; 140 PrefChangeRegistrar pref_change_registrar_;
141 141
142 // Used around accesses to |block_third_party_cookies_| to guarantee thread 142 // Used around accesses to |block_third_party_cookies_| to guarantee thread
143 // safety. 143 // safety.
144 mutable base::Lock lock_; 144 mutable base::Lock lock_;
145 145
146 bool block_third_party_cookies_; 146 bool block_third_party_cookies_;
147 }; 147 };
148 148
149 #endif // CHROME_BROWSER_CONTENT_SETTINGS_COOKIE_SETTINGS_H_ 149 #endif // CHROME_BROWSER_CONTENT_SETTINGS_COOKIE_SETTINGS_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698