OLD | NEW |
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/pref_change_registrar.h" | 13 #include "base/prefs/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 "components/content_settings/core/browser/host_content_settings_map.h" |
16 #include "components/content_settings/core/common/content_settings.h" | 16 #include "components/content_settings/core/common/content_settings.h" |
17 #include "components/keyed_service/content/refcounted_browser_context_keyed_serv
ice_factory.h" | 17 #include "components/keyed_service/content/refcounted_browser_context_keyed_serv
ice_factory.h" |
18 #include "components/keyed_service/core/refcounted_keyed_service.h" | 18 #include "components/keyed_service/core/refcounted_keyed_service.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 Profile; | 24 class Profile; |
25 | 25 |
(...skipping 113 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
139 PrefChangeRegistrar pref_change_registrar_; | 139 PrefChangeRegistrar pref_change_registrar_; |
140 | 140 |
141 // Used around accesses to |block_third_party_cookies_| to guarantee thread | 141 // Used around accesses to |block_third_party_cookies_| to guarantee thread |
142 // safety. | 142 // safety. |
143 mutable base::Lock lock_; | 143 mutable base::Lock lock_; |
144 | 144 |
145 bool block_third_party_cookies_; | 145 bool block_third_party_cookies_; |
146 }; | 146 }; |
147 | 147 |
148 #endif // CHROME_BROWSER_CONTENT_SETTINGS_COOKIE_SETTINGS_H_ | 148 #endif // CHROME_BROWSER_CONTENT_SETTINGS_COOKIE_SETTINGS_H_ |
OLD | NEW |