OLD | NEW |
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 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/config_dir_policy_provider.h" | 5 #include "chrome/browser/policy/config_dir_policy_provider.h" |
6 | 6 |
7 #include <set> | 7 #include <set> |
8 | 8 |
9 #include "base/file_util.h" | 9 #include "base/file_util.h" |
10 #include "base/values.h" | 10 #include "base/values.h" |
(...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
75 return last_modification; | 75 return last_modification; |
76 } | 76 } |
77 | 77 |
78 ConfigDirPolicyProvider::ConfigDirPolicyProvider( | 78 ConfigDirPolicyProvider::ConfigDirPolicyProvider( |
79 const ConfigurationPolicyProvider::PolicyDefinitionList* policy_list, | 79 const ConfigurationPolicyProvider::PolicyDefinitionList* policy_list, |
80 const FilePath& config_dir) | 80 const FilePath& config_dir) |
81 : FileBasedPolicyProvider(policy_list, | 81 : FileBasedPolicyProvider(policy_list, |
82 new ConfigDirPolicyLoader(config_dir)) { | 82 new ConfigDirPolicyLoader(config_dir)) { |
83 } | 83 } |
84 | 84 |
85 | |
86 } // namespace policy | 85 } // namespace policy |
OLD | NEW |