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

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

Issue 14622003: components: Move PrefRegistrySyncable into user_prefs namespace. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fixes Created 7 years, 7 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) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 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_CONTENT_SETTINGS_POLICY_PROVIDER_H_ 5 #ifndef CHROME_BROWSER_CONTENT_SETTINGS_CONTENT_SETTINGS_POLICY_PROVIDER_H_
6 #define CHROME_BROWSER_CONTENT_SETTINGS_CONTENT_SETTINGS_POLICY_PROVIDER_H_ 6 #define CHROME_BROWSER_CONTENT_SETTINGS_CONTENT_SETTINGS_POLICY_PROVIDER_H_
7 7
8 // A content settings provider that takes its settings out of policies. 8 // A content settings provider that takes its settings out of policies.
9 9
10 #include <vector> 10 #include <vector>
11 11
12 #include "base/basictypes.h" 12 #include "base/basictypes.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/content_settings_observable_provider.h " 15 #include "chrome/browser/content_settings/content_settings_observable_provider.h "
16 #include "chrome/browser/content_settings/content_settings_origin_identifier_val ue_map.h" 16 #include "chrome/browser/content_settings/content_settings_origin_identifier_val ue_map.h"
17 17
18 class PrefService; 18 class PrefService;
19
20 namespace user_prefs {
19 class PrefRegistrySyncable; 21 class PrefRegistrySyncable;
22 }
20 23
21 namespace content_settings { 24 namespace content_settings {
22 25
23 // PolicyProvider that provides managed content-settings. 26 // PolicyProvider that provides managed content-settings.
24 class PolicyProvider : public ObservableProvider { 27 class PolicyProvider : public ObservableProvider {
25 public: 28 public:
26 explicit PolicyProvider(PrefService* prefs); 29 explicit PolicyProvider(PrefService* prefs);
27 virtual ~PolicyProvider(); 30 virtual ~PolicyProvider();
28 static void RegisterUserPrefs(PrefRegistrySyncable* registry); 31 static void RegisterUserPrefs(user_prefs::PrefRegistrySyncable* registry);
29 32
30 // ProviderInterface implementations. 33 // ProviderInterface implementations.
31 virtual RuleIterator* GetRuleIterator( 34 virtual RuleIterator* GetRuleIterator(
32 ContentSettingsType content_type, 35 ContentSettingsType content_type,
33 const ResourceIdentifier& resource_identifier, 36 const ResourceIdentifier& resource_identifier,
34 bool incognito) const OVERRIDE; 37 bool incognito) const OVERRIDE;
35 38
36 virtual bool SetWebsiteSetting( 39 virtual bool SetWebsiteSetting(
37 const ContentSettingsPattern& primary_pattern, 40 const ContentSettingsPattern& primary_pattern,
38 const ContentSettingsPattern& secondary_pattern, 41 const ContentSettingsPattern& secondary_pattern,
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after
73 // Used around accesses to the |value_map_| object to guarantee 76 // Used around accesses to the |value_map_| object to guarantee
74 // thread safety. 77 // thread safety.
75 mutable base::Lock lock_; 78 mutable base::Lock lock_;
76 79
77 DISALLOW_COPY_AND_ASSIGN(PolicyProvider); 80 DISALLOW_COPY_AND_ASSIGN(PolicyProvider);
78 }; 81 };
79 82
80 } // namespace content_settings 83 } // namespace content_settings
81 84
82 #endif // CHROME_BROWSER_CONTENT_SETTINGS_CONTENT_SETTINGS_POLICY_PROVIDER_H_ 85 #endif // CHROME_BROWSER_CONTENT_SETTINGS_CONTENT_SETTINGS_POLICY_PROVIDER_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698