diff options
author | avi@chromium.org <avi@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-06-02 13:51:11 +0000 |
---|---|---|
committer | avi@chromium.org <avi@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-06-02 13:51:11 +0000 |
commit | 1505fa2d80afe698db06150512b26c2d08d0e088 (patch) | |
tree | ec21823c3ab6ef62b4915df86a2ad719f207c3ae /chrome/browser/config_dir_policy_provider.h | |
parent | 0b68f1572eb3d1e75ee60c3d1e025aa6b7f06045 (diff) | |
download | chromium_src-1505fa2d80afe698db06150512b26c2d08d0e088.zip chromium_src-1505fa2d80afe698db06150512b26c2d08d0e088.tar.gz chromium_src-1505fa2d80afe698db06150512b26c2d08d0e088.tar.bz2 |
Reduce duplication across Linux/Windows policy providers, and unify names used therein.
BUG=http://crbug.com/45344
TEST=no change
Review URL: http://codereview.chromium.org/2387003
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@48716 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/config_dir_policy_provider.h')
-rw-r--r-- | chrome/browser/config_dir_policy_provider.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/chrome/browser/config_dir_policy_provider.h b/chrome/browser/config_dir_policy_provider.h index 05bffd0..06c1363 100644 --- a/chrome/browser/config_dir_policy_provider.h +++ b/chrome/browser/config_dir_policy_provider.h @@ -29,6 +29,10 @@ class ConfigDirPolicyProvider : public ConfigurationPolicyProvider { // Read and merge the files from the configuration directory. DictionaryValue* ReadPolicies(); + // Decodes the value tree and writes the configuration to the given |store|. + void DecodePolicyValueTree(DictionaryValue* policies, + ConfigurationPolicyStore* store); + // The directory in which we look for configuration files. const FilePath config_dir_; |