OLD | NEW |
---|---|
1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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 "components/policy/core/common/configuration_policy_provider.h" | 5 #include "components/policy/core/common/configuration_policy_provider.h" |
6 | 6 |
7 #include "base/callback.h" | 7 #include "base/callback.h" |
8 #include "components/policy/core/common/external_data_fetcher.h" | 8 #include "components/policy/core/common/external_data_fetcher.h" |
9 #include "components/policy/core/common/policy_map.h" | 9 #include "components/policy/core/common/policy_map.h" |
10 | 10 |
(...skipping 25 matching lines...) Expand all Loading... | |
36 } | 36 } |
37 } | 37 } |
38 | 38 |
39 bool ConfigurationPolicyProvider::IsInitializationComplete( | 39 bool ConfigurationPolicyProvider::IsInitializationComplete( |
40 PolicyDomain domain) const { | 40 PolicyDomain domain) const { |
41 return true; | 41 return true; |
42 } | 42 } |
43 | 43 |
44 void ConfigurationPolicyProvider::UpdatePolicy( | 44 void ConfigurationPolicyProvider::UpdatePolicy( |
45 scoped_ptr<PolicyBundle> bundle) { | 45 scoped_ptr<PolicyBundle> bundle) { |
46 if (bundle.get()) | 46 if (bundle.get()) { |
bartfab (slow)
2015/09/16 15:58:41
Nit: You do not need curly braces for single-line
fhorschig
2015/09/17 11:20:42
Done.
| |
47 policy_bundle_.Swap(bundle.get()); | 47 policy_bundle_.Swap(bundle.get()); |
48 else | 48 } else { |
49 policy_bundle_.Clear(); | 49 policy_bundle_.Clear(); |
50 } | |
50 FOR_EACH_OBSERVER(ConfigurationPolicyProvider::Observer, | 51 FOR_EACH_OBSERVER(ConfigurationPolicyProvider::Observer, |
51 observer_list_, | 52 observer_list_, |
52 OnUpdatePolicy(this)); | 53 OnUpdatePolicy(this)); |
53 } | 54 } |
54 | 55 |
55 SchemaRegistry* ConfigurationPolicyProvider::schema_registry() const { | 56 SchemaRegistry* ConfigurationPolicyProvider::schema_registry() const { |
56 return schema_registry_; | 57 return schema_registry_; |
57 } | 58 } |
58 | 59 |
59 const scoped_refptr<SchemaMap>& | 60 const scoped_refptr<SchemaMap>& |
60 ConfigurationPolicyProvider::schema_map() const { | 61 ConfigurationPolicyProvider::schema_map() const { |
61 return schema_registry_->schema_map(); | 62 return schema_registry_->schema_map(); |
62 } | 63 } |
63 | 64 |
64 void ConfigurationPolicyProvider::AddObserver(Observer* observer) { | 65 void ConfigurationPolicyProvider::AddObserver(Observer* observer) { |
65 observer_list_.AddObserver(observer); | 66 observer_list_.AddObserver(observer); |
66 } | 67 } |
67 | 68 |
68 void ConfigurationPolicyProvider::RemoveObserver(Observer* observer) { | 69 void ConfigurationPolicyProvider::RemoveObserver(Observer* observer) { |
69 observer_list_.RemoveObserver(observer); | 70 observer_list_.RemoveObserver(observer); |
70 } | 71 } |
71 | 72 |
72 void ConfigurationPolicyProvider::OnSchemaRegistryUpdated( | 73 void ConfigurationPolicyProvider::OnSchemaRegistryUpdated( |
73 bool has_new_schemas) {} | 74 bool has_new_schemas) {} |
74 | 75 |
75 void ConfigurationPolicyProvider::OnSchemaRegistryReady() {} | 76 void ConfigurationPolicyProvider::OnSchemaRegistryReady() {} |
76 | 77 |
77 } // namespace policy | 78 } // namespace policy |
OLD | NEW |