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

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

Issue 5528010: Implement preference and policy based content settings providers. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/chrome/browser/content_settings
Patch Set: Created 10 years 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
(Empty)
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #ifndef CHROME_BROWSER_CONTENT_SETTINGS_POLICY_CONTENT_SETTINGS_PROVIDER_H_
6 #define CHROME_BROWSER_CONTENT_SETTINGS_POLICY_CONTENT_SETTINGS_PROVIDER_H_
7 #pragma once
8
9 // A content settings provider that takes its settings out of policies.
10
11 #include "base/basictypes.h"
12 #include "base/lock.h"
13 #include "chrome/browser/content_settings/content_settings_provider.h"
14 #include "chrome/browser/prefs/pref_change_registrar.h"
15 #include "chrome/common/notification_observer.h"
16 #include "chrome/common/notification_registrar.h"
17
18 class ContentSettingsDetails;
19 class DictionaryValue;
20 class PrefService;
21 class Profile;
22
23 class PolicyContentSettingsProvider : public ContentSettingsProviderInterface,
24 public NotificationObserver {
25 public:
26 PolicyContentSettingsProvider(Profile* profile);
27 virtual ~PolicyContentSettingsProvider();
28
29 // ContentSettingsProviderInterface implementation.
30 virtual bool CanProvideDefaultSetting(ContentSettingsType content_type) const;
31 virtual ContentSetting ProvideDefaultSetting(
32 ContentSettingsType content_type) const;
33 virtual void UpdateDefaultSetting(ContentSettingsType content_type,
34 ContentSetting setting);
35 virtual void ResetToDefaults();
36 virtual bool DefaultSettingIsManaged(ContentSettingsType content_type) const;
37
38 static void RegisterUserPrefs(PrefService* prefs);
39
40 private:
41 // NotificationObserver implementation.
42 virtual void Observe(NotificationType type,
43 const NotificationSource& source,
44 const NotificationDetails& details);
45
46 // Informs observers that content settings have changed. Make sure that
47 // |lock_| is not held when calling this, as listeners will usually call one
48 // of the GetSettings functions in response, which would then lead to a
49 // mutex deadlock.
50 void NotifyObservers(const ContentSettingsDetails& details);
51
52 void UnregisterObservers();
53
54 // Sets the fields of |settings| based on the values retrieved from |prefs|.
55 void ReadDefaultSettingsFromPrefs(const PrefService* prefs,
56 ContentSettings* settings);
57
58 // Reads the policy controlled default settings for a specific content type.
59 void UpdateManagedDefaultSetting(const PrefService* prefs,
60 ContentSettingsType content_type,
61 ContentSettings* settings);
62
63
64 // Copies of the pref data, so that we can read it on the IO thread.
65 ContentSettings managed_default_content_settings_;
66
67 Profile* profile_;
68
69 // Whether this settings map is for an OTR session.
70 bool is_off_the_record_;
71
72 // Used around accesses to the settings_ object to guarantee thread safety.
gfeher 2010/12/08 13:59:17 s/settings_/managed_default_content_settings_/ ? A
jochen (gone - plz use gerrit) 2010/12/08 14:54:01 Done.
73 mutable Lock lock_;
74
75 PrefChangeRegistrar pref_change_registrar_;
76 NotificationRegistrar notification_registrar_;
77
78 DISALLOW_COPY_AND_ASSIGN(PolicyContentSettingsProvider);
79 };
80
81 #endif // CHROME_BROWSER_CONTENT_SETTINGS_POLICY_CONTENT_SETTINGS_PROVIDER_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698