OLD | NEW |
(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 // NotificationObserver implementation. |
| 41 virtual void Observe(NotificationType type, |
| 42 const NotificationSource& source, |
| 43 const NotificationDetails& details); |
| 44 |
| 45 private: |
| 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 managed_default_content_settings_ object to |
| 73 // guarantee thread safety. |
| 74 mutable Lock lock_; |
| 75 |
| 76 PrefChangeRegistrar pref_change_registrar_; |
| 77 NotificationRegistrar notification_registrar_; |
| 78 |
| 79 DISALLOW_COPY_AND_ASSIGN(PolicyContentSettingsProvider); |
| 80 }; |
| 81 |
| 82 #endif // CHROME_BROWSER_CONTENT_SETTINGS_POLICY_CONTENT_SETTINGS_PROVIDER_H_ |
OLD | NEW |