OLD | NEW |
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/public/pref_change_registrar.h" |
13 #include "base/synchronization/lock.h" | 14 #include "base/synchronization/lock.h" |
14 #include "chrome/browser/api/prefs/pref_change_registrar.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 #include "content/public/browser/notification_observer.h" | 17 #include "content/public/browser/notification_observer.h" |
18 | 18 |
19 class PrefService; | 19 class PrefService; |
20 | 20 |
21 namespace content_settings { | 21 namespace content_settings { |
22 | 22 |
23 // PolicyProvider that provides managed content-settings. | 23 // PolicyProvider that provides managed content-settings. |
24 class PolicyProvider : public ObservableProvider, | 24 class PolicyProvider : public ObservableProvider, |
(...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
75 // Used around accesses to the |value_map_| object to guarantee | 75 // Used around accesses to the |value_map_| object to guarantee |
76 // thread safety. | 76 // thread safety. |
77 mutable base::Lock lock_; | 77 mutable base::Lock lock_; |
78 | 78 |
79 DISALLOW_COPY_AND_ASSIGN(PolicyProvider); | 79 DISALLOW_COPY_AND_ASSIGN(PolicyProvider); |
80 }; | 80 }; |
81 | 81 |
82 } // namespace content_settings | 82 } // namespace content_settings |
83 | 83 |
84 #endif // CHROME_BROWSER_CONTENT_SETTINGS_CONTENT_SETTINGS_POLICY_PROVIDER_H_ | 84 #endif // CHROME_BROWSER_CONTENT_SETTINGS_CONTENT_SETTINGS_POLICY_PROVIDER_H_ |
OLD | NEW |