OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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_POLICY_CONFIGURATION_POLICY_PROVIDER_H_ | 5 #ifndef CHROME_BROWSER_POLICY_CONFIGURATION_POLICY_PROVIDER_H_ |
6 #define CHROME_BROWSER_POLICY_CONFIGURATION_POLICY_PROVIDER_H_ | 6 #define CHROME_BROWSER_POLICY_CONFIGURATION_POLICY_PROVIDER_H_ |
7 | 7 |
8 #include <set> | 8 #include <set> |
9 #include <string> | 9 #include <string> |
10 | 10 |
11 #include "base/basictypes.h" | 11 #include "base/basictypes.h" |
12 #include "base/memory/scoped_ptr.h" | 12 #include "base/memory/scoped_ptr.h" |
13 #include "base/observer_list.h" | 13 #include "base/observer_list.h" |
14 #include "chrome/browser/policy/policy_bundle.h" | 14 #include "chrome/browser/policy/policy_bundle.h" |
15 #include "chrome/browser/policy/policy_service.h" | 15 #include "chrome/browser/policy/policy_namespace.h" |
16 | 16 |
17 namespace policy { | 17 namespace policy { |
18 | 18 |
19 // A mostly-abstract super class for platform-specific policy providers. | 19 // A mostly-abstract super class for platform-specific policy providers. |
20 // Platform-specific policy providers (Windows Group Policy, gconf, | 20 // Platform-specific policy providers (Windows Group Policy, gconf, |
21 // etc.) should implement a subclass of this class. | 21 // etc.) should implement a subclass of this class. |
22 class ConfigurationPolicyProvider { | 22 class ConfigurationPolicyProvider { |
23 public: | 23 public: |
24 class Observer { | 24 class Observer { |
25 public: | 25 public: |
(...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
90 bool did_shutdown_; | 90 bool did_shutdown_; |
91 | 91 |
92 ObserverList<Observer, true> observer_list_; | 92 ObserverList<Observer, true> observer_list_; |
93 | 93 |
94 DISALLOW_COPY_AND_ASSIGN(ConfigurationPolicyProvider); | 94 DISALLOW_COPY_AND_ASSIGN(ConfigurationPolicyProvider); |
95 }; | 95 }; |
96 | 96 |
97 } // namespace policy | 97 } // namespace policy |
98 | 98 |
99 #endif // CHROME_BROWSER_POLICY_CONFIGURATION_POLICY_PROVIDER_H_ | 99 #endif // CHROME_BROWSER_POLICY_CONFIGURATION_POLICY_PROVIDER_H_ |
OLD | NEW |