1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
|
// 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.
#include "chrome/test/base/testing_pref_service.h"
#include "base/prefs/default_pref_store.h"
#include "base/prefs/testing_pref_store.h"
#include "chrome/browser/policy/configuration_policy_pref_store.h"
#include "chrome/browser/prefs/browser_prefs.h"
#include "chrome/browser/prefs/command_line_pref_store.h"
#include "chrome/browser/prefs/pref_model_associator.h"
#include "chrome/browser/prefs/pref_notifier_impl.h"
#include "chrome/browser/prefs/pref_value_store.h"
#include "chrome/test/base/testing_browser_process.h"
#include "testing/gtest/include/gtest/gtest.h"
TestingPrefServiceBase::TestingPrefServiceBase(
TestingPrefStore* managed_prefs,
TestingPrefStore* user_prefs,
TestingPrefStore* recommended_prefs,
DefaultPrefStore* default_store,
PrefModelAssociator* pref_sync_associator,
PrefNotifierImpl* pref_notifier)
: PrefService(pref_notifier,
new PrefValueStore(
managed_prefs,
NULL,
NULL,
user_prefs,
recommended_prefs,
default_store,
pref_sync_associator,
pref_notifier),
user_prefs,
default_store,
pref_sync_associator,
false),
managed_prefs_(managed_prefs),
user_prefs_(user_prefs),
recommended_prefs_(recommended_prefs) {
}
TestingPrefServiceBase::~TestingPrefServiceBase() {
}
const Value* TestingPrefServiceBase::GetManagedPref(const char* path) const {
return GetPref(managed_prefs_, path);
}
void TestingPrefServiceBase::SetManagedPref(const char* path, Value* value) {
SetPref(managed_prefs_, path, value);
}
void TestingPrefServiceBase::RemoveManagedPref(const char* path) {
RemovePref(managed_prefs_, path);
}
const Value* TestingPrefServiceBase::GetUserPref(const char* path) const {
return GetPref(user_prefs_, path);
}
void TestingPrefServiceBase::SetUserPref(const char* path, Value* value) {
SetPref(user_prefs_, path, value);
}
void TestingPrefServiceBase::RemoveUserPref(const char* path) {
RemovePref(user_prefs_, path);
}
const Value* TestingPrefServiceBase::GetRecommendedPref(
const char* path) const {
return GetPref(recommended_prefs_, path);
}
void TestingPrefServiceBase::SetRecommendedPref(
const char* path, Value* value) {
SetPref(recommended_prefs_, path, value);
}
void TestingPrefServiceBase::RemoveRecommendedPref(const char* path) {
RemovePref(recommended_prefs_, path);
}
const Value* TestingPrefServiceBase::GetPref(TestingPrefStore* pref_store,
const char* path) const {
const Value* res;
return pref_store->GetValue(path, &res) ? res : NULL;
}
void TestingPrefServiceBase::SetPref(TestingPrefStore* pref_store,
const char* path,
Value* value) {
pref_store->SetValue(path, value);
}
void TestingPrefServiceBase::RemovePref(TestingPrefStore* pref_store,
const char* path) {
pref_store->RemoveValue(path);
}
TestingPrefService::TestingPrefService()
: TestingPrefServiceBase(new TestingPrefStore(),
new TestingPrefStore(),
new TestingPrefStore(),
new DefaultPrefStore(),
new PrefModelAssociator(),
new PrefNotifierImpl()) {
}
TestingPrefService::~TestingPrefService() {
}
ScopedTestingLocalState::ScopedTestingLocalState(
TestingBrowserProcess* browser_process)
: browser_process_(browser_process) {
chrome::RegisterLocalState(&local_state_);
EXPECT_FALSE(browser_process->local_state());
browser_process->SetLocalState(&local_state_);
}
ScopedTestingLocalState::~ScopedTestingLocalState() {
EXPECT_EQ(&local_state_, browser_process_->local_state());
browser_process_->SetLocalState(NULL);
}
|