diff options
author | danno@chromium.org <danno@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-05-12 15:03:32 +0000 |
---|---|---|
committer | danno@chromium.org <danno@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-05-12 15:03:32 +0000 |
commit | c0858b00d9c2009c489ee8d90eb46460a8acc82d (patch) | |
tree | 4816a658e5200edc5c2d8b5fb465b8a8474a3b58 /chrome/browser/configuration_policy_store.h | |
parent | d661e6ed98b7139f898f7edd33f7d1e2b946c9c6 (diff) | |
download | chromium_src-c0858b00d9c2009c489ee8d90eb46460a8acc82d.zip chromium_src-c0858b00d9c2009c489ee8d90eb46460a8acc82d.tar.gz chromium_src-c0858b00d9c2009c489ee8d90eb46460a8acc82d.tar.bz2 |
Implementation of managed policy abstraction on top of a preference store. This is preparation work for implementing platform-specific policy.
BUG=none
TEST=--gtest_filter=ConfigurationPolicyPrefStoreTest*
Review URL: http://codereview.chromium.org/1692011
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@47030 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/configuration_policy_store.h')
-rw-r--r-- | chrome/browser/configuration_policy_store.h | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/chrome/browser/configuration_policy_store.h b/chrome/browser/configuration_policy_store.h new file mode 100644 index 0000000..8d2ea95 --- /dev/null +++ b/chrome/browser/configuration_policy_store.h @@ -0,0 +1,33 @@ +// Copyright (c) 2010 The Chromium Authors. All rights reserved. +// Use of this source code is governed by a BSD-style license that can be +// found in the LICENSE file. + +#ifndef CHROME_BROWSER_CONFIGURATION_POLICY_STORE_H_ +#define CHROME_BROWSER_CONFIGURATION_POLICY_STORE_H_ + +#include "base/values.h" + +// An abstract super class for policy stores that provides a method that can be +// called by a |ConfigurationPolicyProvider| to specify a policy. +class ConfigurationPolicyStore { + public: + ConfigurationPolicyStore() {} + virtual ~ConfigurationPolicyStore() {} + + enum PolicyType { + kPolicyHomePage, + kPolicyHomepageIsNewTabPage, + kPolicyCookiesEnabled + }; + + // A |ConfigurationPolicyProvider| specifes the value of a policy setting + // through a call to |Apply|. + // The configuration policy pref store takes over the ownership of |value|. + virtual void Apply(PolicyType policy, Value* value) = 0; + + private: + DISALLOW_COPY_AND_ASSIGN(ConfigurationPolicyStore); +}; + +#endif // CHROME_BROWSER_CONFIGURATION_POLICY_STORE_H_ + |