Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(105)

Unified Diff: chrome/browser/configuration_policy_pref_store.h

Issue 1692011: Implementation of managed policy: Policy Abstraction (Closed)
Patch Set: check no changes Created 10 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | chrome/browser/configuration_policy_pref_store.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/configuration_policy_pref_store.h
diff --git a/chrome/browser/configuration_policy_pref_store.h b/chrome/browser/configuration_policy_pref_store.h
new file mode 100644
index 0000000000000000000000000000000000000000..8335070f6db36e2edda50ab035099f4e63ce137f
--- /dev/null
+++ b/chrome/browser/configuration_policy_pref_store.h
@@ -0,0 +1,65 @@
+// 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_PREF_STORE_H_
+#define CHROME_BROWSER_CONFIGURATION_POLICY_PREF_STORE_H_
+
+#include <string>
+
+#include "base/basictypes.h"
+#include "base/scoped_ptr.h"
+#include "base/values.h"
+#include "chrome/browser/configuration_policy_store.h"
+#include "chrome/browser/pref_store.h"
+#include "testing/gtest/include/gtest/gtest_prod.h"
+
+class ConfigurationPolicyProvider;
+
+// An implementation of the |PrefStore| that holds a Dictionary
+// created through applied policy.
+class ConfigurationPolicyPrefStore : public PrefStore,
+ public ConfigurationPolicyStore {
+ public:
+ explicit ConfigurationPolicyPrefStore(ConfigurationPolicyProvider* provider);
+ virtual ~ConfigurationPolicyPrefStore() { }
+
+ // PrefStore methods:
+ virtual PrefReadError ReadPrefs();
+ virtual DictionaryValue* prefs() { return prefs_.get(); }
+
+ private:
+ // For unit tests.
+ FRIEND_TEST(ConfigurationPolicyPrefStoreTest, TestSettingHomePageDefault);
+ FRIEND_TEST(ConfigurationPolicyPrefStoreTest, TestSettingHomePageOverride);
+ FRIEND_TEST(ConfigurationPolicyPrefStoreTest,
+ TestSettingHomepageIsNewTabPageDefault);
+ FRIEND_TEST(ConfigurationPolicyPrefStoreTest,
+ TestSettingHomepageIsNewTabPage);
+ FRIEND_TEST(ConfigurationPolicyPrefStoreTest,
+ TestSettingCookiesEnabledDefault);
+ FRIEND_TEST(ConfigurationPolicyPrefStoreTest,
+ TestSettingCookiesEnabledOverride);
+
+ // Policies that map to a single preference are handled
+ // by an automated converter. Each one of these policies
+ // has an entry in |simple_policy_map_| with the following type.
+ struct PolicyToPreferenceMapEntry {
+ Value::ValueType value_type;
+ PolicyType policy_type;
+ const wchar_t* preference_path; // A DictionaryValue path, not a file path.
+ };
+
+ static const PolicyToPreferenceMapEntry simple_policy_map_[];
+
+ ConfigurationPolicyProvider* provider_;
+ scoped_ptr<DictionaryValue> prefs_;
+
+ // ConfigurationPolicyStore methods:
+ virtual void Apply(PolicyType setting, Value* value);
+
+ DISALLOW_COPY_AND_ASSIGN(ConfigurationPolicyPrefStore);
+};
+
+#endif // CHROME_BROWSER_CONFIGURATION_POLICY_PREF_STORE_H_
+
« no previous file with comments | « no previous file | chrome/browser/configuration_policy_pref_store.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698