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 "base/callback.h" | 7 #include "base/callback.h" |
8 #include "chrome/browser/policy/external_data_fetcher.h" | 8 #include "components/policy/core/common/external_data_fetcher.h" |
9 #include "components/policy/core/common/policy_map.h" | |
Joao da Silva
2013/11/22 17:38:48
This isn't used in this file; maybe it was kept af
| |
9 | 10 |
10 namespace policy { | 11 namespace policy { |
11 | 12 |
12 ConfigurationPolicyProvider::Observer::~Observer() {} | 13 ConfigurationPolicyProvider::Observer::~Observer() {} |
13 | 14 |
14 ConfigurationPolicyProvider::ConfigurationPolicyProvider() | 15 ConfigurationPolicyProvider::ConfigurationPolicyProvider() |
15 : did_shutdown_(false), | 16 : did_shutdown_(false), |
16 schema_registry_(NULL) {} | 17 schema_registry_(NULL) {} |
17 | 18 |
18 ConfigurationPolicyProvider::~ConfigurationPolicyProvider() { | 19 ConfigurationPolicyProvider::~ConfigurationPolicyProvider() { |
(...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
66 void ConfigurationPolicyProvider::RemoveObserver(Observer* observer) { | 67 void ConfigurationPolicyProvider::RemoveObserver(Observer* observer) { |
67 observer_list_.RemoveObserver(observer); | 68 observer_list_.RemoveObserver(observer); |
68 } | 69 } |
69 | 70 |
70 void ConfigurationPolicyProvider::OnSchemaRegistryUpdated( | 71 void ConfigurationPolicyProvider::OnSchemaRegistryUpdated( |
71 bool has_new_schemas) {} | 72 bool has_new_schemas) {} |
72 | 73 |
73 void ConfigurationPolicyProvider::OnSchemaRegistryReady() {} | 74 void ConfigurationPolicyProvider::OnSchemaRegistryReady() {} |
74 | 75 |
75 } // namespace policy | 76 } // namespace policy |
OLD | NEW |