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 explicit 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 // Reads the policy managed default settings. |
| 55 void ReadManagedDefaultSettings(); |
| 56 |
| 57 // Reads the policy controlled default settings for a specific content type. |
| 58 void UpdateManagedDefaultSetting(ContentSettingsType content_type); |
| 59 |
| 60 // Copies of the pref data, so that we can read it on the IO thread. |
| 61 ContentSettings managed_default_content_settings_; |
| 62 |
| 63 Profile* profile_; |
| 64 |
| 65 // Whether this settings map is for an OTR session. |
| 66 bool is_off_the_record_; |
| 67 |
| 68 // Used around accesses to the managed_default_content_settings_ object to |
| 69 // guarantee thread safety. |
| 70 mutable Lock lock_; |
| 71 |
| 72 PrefChangeRegistrar pref_change_registrar_; |
| 73 NotificationRegistrar notification_registrar_; |
| 74 |
| 75 DISALLOW_COPY_AND_ASSIGN(PolicyContentSettingsProvider); |
| 76 }; |
| 77 |
| 78 #endif // CHROME_BROWSER_CONTENT_SETTINGS_POLICY_CONTENT_SETTINGS_PROVIDER_H_ |
OLD | NEW |