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

Unified Diff: chrome/test/base/testing_pref_service.h

Issue 12253004: Moving last generic Prefs implementation files to base/prefs/. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Merge LKGR Created 7 years, 10 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 | « chrome/test/base/scoped_testing_local_state.h ('k') | chrome/test/base/testing_pref_service.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/test/base/testing_pref_service.h
diff --git a/chrome/test/base/testing_pref_service.h b/chrome/test/base/testing_pref_service.h
deleted file mode 100644
index 7bbaeace8e0b9b14e4a1882977af7453675971b8..0000000000000000000000000000000000000000
--- a/chrome/test/base/testing_pref_service.h
+++ /dev/null
@@ -1,196 +0,0 @@
-// Copyright (c) 2012 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_TEST_BASE_TESTING_PREF_SERVICE_H_
-#define CHROME_TEST_BASE_TESTING_PREF_SERVICE_H_
-
-#include "base/memory/ref_counted.h"
-#include "base/memory/scoped_ptr.h"
-#include "base/prefs/pref_registry.h"
-#include "base/prefs/pref_service.h"
-#include "base/prefs/testing_pref_store.h"
-
-class PrefNotifierImpl;
-class PrefRegistrySimple;
-class TestingPrefStore;
-
-// A PrefService subclass for testing. It operates totally in memory and
-// provides additional API for manipulating preferences at the different levels
-// (managed, extension, user) conveniently.
-//
-// Use this via its specializations, e.g. TestingPrefServiceSimple.
-template <class SuperPrefService, class ConstructionPrefRegistry>
-class TestingPrefServiceBase : public SuperPrefService {
- public:
- virtual ~TestingPrefServiceBase();
-
- // Read the value of a preference from the managed layer. Returns NULL if the
- // preference is not defined at the managed layer.
- const Value* GetManagedPref(const char* path) const;
-
- // Set a preference on the managed layer and fire observers if the preference
- // changed. Assumes ownership of |value|.
- void SetManagedPref(const char* path, Value* value);
-
- // Clear the preference on the managed layer and fire observers if the
- // preference has been defined previously.
- void RemoveManagedPref(const char* path);
-
- // Similar to the above, but for user preferences.
- const Value* GetUserPref(const char* path) const;
- void SetUserPref(const char* path, Value* value);
- void RemoveUserPref(const char* path);
-
- // Similar to the above, but for recommended policy preferences.
- const Value* GetRecommendedPref(const char* path) const;
- void SetRecommendedPref(const char* path, Value* value);
- void RemoveRecommendedPref(const char* path);
-
- // Do-nothing implementation for TestingPrefService.
- static void HandleReadError(PersistentPrefStore::PrefReadError error) {}
-
- protected:
- TestingPrefServiceBase(
- TestingPrefStore* managed_prefs,
- TestingPrefStore* user_prefs,
- TestingPrefStore* recommended_prefs,
- ConstructionPrefRegistry* pref_registry,
- PrefNotifierImpl* pref_notifier);
-
- private:
- // Reads the value of the preference indicated by |path| from |pref_store|.
- // Returns NULL if the preference was not found.
- const Value* GetPref(TestingPrefStore* pref_store, const char* path) const;
-
- // Sets the value for |path| in |pref_store|.
- void SetPref(TestingPrefStore* pref_store, const char* path, Value* value);
-
- // Removes the preference identified by |path| from |pref_store|.
- void RemovePref(TestingPrefStore* pref_store, const char* path);
-
- // Pointers to the pref stores our value store uses.
- scoped_refptr<TestingPrefStore> managed_prefs_;
- scoped_refptr<TestingPrefStore> user_prefs_;
- scoped_refptr<TestingPrefStore> recommended_prefs_;
-
- DISALLOW_COPY_AND_ASSIGN(TestingPrefServiceBase);
-};
-
-// Test version of PrefService.
-class TestingPrefServiceSimple
- : public TestingPrefServiceBase<PrefService, PrefRegistry> {
- public:
- TestingPrefServiceSimple();
- virtual ~TestingPrefServiceSimple();
-
- // This is provided as a convenience for registering preferences on
- // an existing TestingPrefServiceSimple instance. On a production
- // PrefService you would do all registrations before constructing
- // it, passing it a PrefRegistry via its constructor (or via
- // e.g. PrefServiceBuilder).
- PrefRegistrySimple* registry();
-
- private:
- DISALLOW_COPY_AND_ASSIGN(TestingPrefServiceSimple);
-};
-
-template<>
-TestingPrefServiceBase<PrefService, PrefRegistry>::TestingPrefServiceBase(
- TestingPrefStore* managed_prefs,
- TestingPrefStore* user_prefs,
- TestingPrefStore* recommended_prefs,
- PrefRegistry* pref_registry,
- PrefNotifierImpl* pref_notifier);
-
-template<class SuperPrefService, class ConstructionPrefRegistry>
-TestingPrefServiceBase<
- SuperPrefService, ConstructionPrefRegistry>::~TestingPrefServiceBase() {
-}
-
-template<class SuperPrefService, class ConstructionPrefRegistry>
-const Value* TestingPrefServiceBase<
- SuperPrefService, ConstructionPrefRegistry>::GetManagedPref(
- const char* path) const {
- return GetPref(managed_prefs_, path);
-}
-
-template<class SuperPrefService, class ConstructionPrefRegistry>
-void TestingPrefServiceBase<
- SuperPrefService, ConstructionPrefRegistry>::SetManagedPref(
- const char* path, Value* value) {
- SetPref(managed_prefs_, path, value);
-}
-
-template<class SuperPrefService, class ConstructionPrefRegistry>
-void TestingPrefServiceBase<
- SuperPrefService, ConstructionPrefRegistry>::RemoveManagedPref(
- const char* path) {
- RemovePref(managed_prefs_, path);
-}
-
-template<class SuperPrefService, class ConstructionPrefRegistry>
-const Value* TestingPrefServiceBase<
- SuperPrefService, ConstructionPrefRegistry>::GetUserPref(
- const char* path) const {
- return GetPref(user_prefs_, path);
-}
-
-template<class SuperPrefService, class ConstructionPrefRegistry>
-void TestingPrefServiceBase<
- SuperPrefService, ConstructionPrefRegistry>::SetUserPref(
- const char* path, Value* value) {
- SetPref(user_prefs_, path, value);
-}
-
-template<class SuperPrefService, class ConstructionPrefRegistry>
-void TestingPrefServiceBase<
- SuperPrefService, ConstructionPrefRegistry>::RemoveUserPref(
- const char* path) {
- RemovePref(user_prefs_, path);
-}
-
-template<class SuperPrefService, class ConstructionPrefRegistry>
-const Value* TestingPrefServiceBase<
- SuperPrefService, ConstructionPrefRegistry>::GetRecommendedPref(
- const char* path) const {
- return GetPref(recommended_prefs_, path);
-}
-
-template<class SuperPrefService, class ConstructionPrefRegistry>
-void TestingPrefServiceBase<
- SuperPrefService, ConstructionPrefRegistry>::SetRecommendedPref(
- const char* path, Value* value) {
- SetPref(recommended_prefs_, path, value);
-}
-
-template<class SuperPrefService, class ConstructionPrefRegistry>
-void TestingPrefServiceBase<
- SuperPrefService, ConstructionPrefRegistry>::RemoveRecommendedPref(
- const char* path) {
- RemovePref(recommended_prefs_, path);
-}
-
-template<class SuperPrefService, class ConstructionPrefRegistry>
-const Value* TestingPrefServiceBase<
- SuperPrefService, ConstructionPrefRegistry>::GetPref(
- TestingPrefStore* pref_store, const char* path) const {
- const Value* res;
- return pref_store->GetValue(path, &res) ? res : NULL;
-}
-
-template<class SuperPrefService, class ConstructionPrefRegistry>
-void TestingPrefServiceBase<
- SuperPrefService, ConstructionPrefRegistry>::SetPref(
- TestingPrefStore* pref_store, const char* path, Value* value) {
- pref_store->SetValue(path, value);
-}
-
-template<class SuperPrefService, class ConstructionPrefRegistry>
-void TestingPrefServiceBase<
- SuperPrefService, ConstructionPrefRegistry>::RemovePref(
- TestingPrefStore* pref_store, const char* path) {
- pref_store->RemoveValue(path);
-}
-
-#endif // CHROME_TEST_BASE_TESTING_PREF_SERVICE_H_
« no previous file with comments | « chrome/test/base/scoped_testing_local_state.h ('k') | chrome/test/base/testing_pref_service.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698