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 #include "chrome/browser/policy/configuration_policy_provider.h" | 5 #include "chrome/browser/policy/configuration_policy_provider.h" |
6 | 6 |
7 #include "chrome/browser/policy/policy_map.h" | 7 #include "chrome/browser/policy/policy_map.h" |
8 #include "policy/policy_constants.h" | 8 #include "policy/policy_constants.h" |
9 | 9 |
10 namespace policy { | 10 namespace policy { |
(...skipping 85 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
96 | 96 |
97 void ConfigurationPolicyProvider::AddObserver(Observer* observer) { | 97 void ConfigurationPolicyProvider::AddObserver(Observer* observer) { |
98 observer_list_.AddObserver(observer); | 98 observer_list_.AddObserver(observer); |
99 } | 99 } |
100 | 100 |
101 void ConfigurationPolicyProvider::RemoveObserver(Observer* observer) { | 101 void ConfigurationPolicyProvider::RemoveObserver(Observer* observer) { |
102 observer_list_.RemoveObserver(observer); | 102 observer_list_.RemoveObserver(observer); |
103 } | 103 } |
104 | 104 |
105 void ConfigurationPolicyProvider::RegisterPolicyDomain( | 105 void ConfigurationPolicyProvider::RegisterPolicyDomain( |
106 PolicyDomain domain, | 106 scoped_refptr<const PolicyDomainDescriptor> descriptor) {} |
107 const std::set<std::string>& component_ids) {} | |
108 | 107 |
109 } // namespace policy | 108 } // namespace policy |
OLD | NEW |