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

Side by Side Diff: chrome/test/testing_pref_service.cc

Issue 5915004: Introduce incognito preference settings. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Whitespaces + fixes for trybot Created 10 years 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
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/test/testing_pref_service.h" 5 #include "chrome/test/testing_pref_service.h"
6 6
7 #include "chrome/browser/extensions/extension_pref_store.h"
7 #include "chrome/browser/policy/configuration_policy_pref_store.h" 8 #include "chrome/browser/policy/configuration_policy_pref_store.h"
8 #include "chrome/browser/prefs/command_line_pref_store.h" 9 #include "chrome/browser/prefs/command_line_pref_store.h"
9 #include "chrome/browser/prefs/pref_notifier.h" 10 #include "chrome/browser/prefs/pref_notifier.h"
10 #include "chrome/browser/prefs/pref_value_store.h" 11 #include "chrome/browser/prefs/pref_value_store.h"
11 #include "chrome/browser/prefs/testing_pref_store.h" 12 #include "chrome/browser/prefs/testing_pref_store.h"
12 13
13 // TODO(pamg): Instantiate no PrefStores by default. Allow callers to specify 14 // TODO(pamg): Instantiate no PrefStores by default. Allow callers to specify
14 // which they want, and expand usage of this class to more unit tests. 15 // which they want, and expand usage of this class to more unit tests.
15 TestingPrefService::TestingPrefService() 16
16 : PrefService( 17 // We assign to managed_platform_prefs_weak_ because managed_platform_prefs_
17 managed_platform_prefs_ = new TestingPrefStore(), 18 // and friends are not constructed yet, at the time PrefService is being
18 device_management_prefs_ = new TestingPrefStore(), 19 // constructed.
19 NULL, 20 TestingPrefService::TestingPrefService(
20 NULL, 21 scoped_refptr<TestingPrefStore> managed_platform_prefs,
21 user_prefs_ = new TestingPrefStore(), 22 scoped_refptr<TestingPrefStore> device_management_prefs,
22 NULL, 23 scoped_refptr<ExtensionPrefStore> extension_prefs,
23 NULL) { 24 scoped_refptr<TestingPrefStore> user_prefs)
25 : PrefService(managed_platform_prefs,
26 device_management_prefs,
27 extension_prefs,
28 NULL,
29 user_prefs,
30 NULL,
31 NULL),
32 managed_platform_prefs_(managed_platform_prefs),
33 device_management_prefs_(device_management_prefs),
34 extension_prefs_(extension_prefs),
35 user_prefs_(user_prefs) {
36 }
37
38 TestingPrefService::~TestingPrefService() {
39 }
40
41 // static
42 TestingPrefService* TestingPrefService::CreateTestingPrefService() {
43 return new TestingPrefService(
44 new TestingPrefStore(),
45 new TestingPrefStore(),
46 new ExtensionPrefStore(),
47 new TestingPrefStore());
24 } 48 }
25 49
26 const Value* TestingPrefService::GetManagedPref(const char* path) const { 50 const Value* TestingPrefService::GetManagedPref(const char* path) const {
27 return GetPref(managed_platform_prefs_, path); 51 return GetPref(managed_platform_prefs_, path);
28 } 52 }
29 53
30 void TestingPrefService::SetManagedPref(const char* path, Value* value) { 54 void TestingPrefService::SetManagedPref(const char* path, Value* value) {
31 SetPref(managed_platform_prefs_, path, value); 55 SetPref(managed_platform_prefs_, path, value);
32 } 56 }
33 57
34 void TestingPrefService::RemoveManagedPref(const char* path) { 58 void TestingPrefService::RemoveManagedPref(const char* path) {
35 RemovePref(managed_platform_prefs_, path); 59 RemovePref(managed_platform_prefs_, path);
36 } 60 }
37 61
38 const Value* TestingPrefService::GetUserPref(const char* path) const { 62 const Value* TestingPrefService::GetUserPref(const char* path) const {
39 return GetPref(user_prefs_, path); 63 return GetPref(user_prefs_, path);
40 } 64 }
41 65
42 void TestingPrefService::SetUserPref(const char* path, Value* value) { 66 void TestingPrefService::SetUserPref(const char* path, Value* value) {
43 SetPref(user_prefs_, path, value); 67 SetPref(user_prefs_, path, value);
44 } 68 }
45 69
46 void TestingPrefService::RemoveUserPref(const char* path) { 70 void TestingPrefService::RemoveUserPref(const char* path) {
47 RemovePref(user_prefs_, path); 71 RemovePref(user_prefs_, path);
48 } 72 }
49 73
50 const Value* TestingPrefService::GetPref(TestingPrefStore* pref_store, 74 const Value* TestingPrefService::GetPref(
51 const char* path) const { 75 scoped_refptr<TestingPrefStore> pref_store,
76 const char* path) const {
52 Value* res; 77 Value* res;
53 return pref_store->GetValue(path, &res) == PrefStore::READ_OK ? res : NULL; 78 return pref_store->GetValue(path, &res) == PrefStore::READ_OK ? res : NULL;
54 } 79 }
55 80
56 void TestingPrefService::SetPref(TestingPrefStore* pref_store, 81 void TestingPrefService::SetPref(scoped_refptr<TestingPrefStore> pref_store,
57 const char* path, 82 const char* path,
58 Value* value) { 83 Value* value) {
59 pref_store->SetValue(path, value); 84 pref_store->SetValue(path, value);
60 } 85 }
61 86
62 void TestingPrefService::RemovePref(TestingPrefStore* pref_store, 87 void TestingPrefService::RemovePref(scoped_refptr<TestingPrefStore> pref_store,
63 const char* path) { 88 const char* path) {
64 pref_store->RemoveValue(path); 89 pref_store->RemoveValue(path);
65 } 90 }
91
92 scoped_refptr<ExtensionPrefStore> TestingPrefService::GetExtensionPrefs() {
93 return extension_prefs_;
94 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698