Lines Matching defs:TestingPrefStore

10 TestingPrefStore::TestingPrefStore()
19 bool TestingPrefStore::GetValue(const std::string& key,
24 bool TestingPrefStore::GetMutableValue(const std::string& key,
29 void TestingPrefStore::AddObserver(PrefStore::Observer* observer) {
33 void TestingPrefStore::RemoveObserver(PrefStore::Observer* observer) {
37 bool TestingPrefStore::HasObservers() const {
41 bool TestingPrefStore::IsInitializationComplete() const {
45 void TestingPrefStore::SetValue(const std::string& key, base::Value* value) {
52 void TestingPrefStore::SetValueSilently(const std::string& key,
58 void TestingPrefStore::RemoveValue(const std::string& key) {
65 bool TestingPrefStore::ReadOnly() const {
69 PersistentPrefStore::PrefReadError TestingPrefStore::GetReadError() const {
73 PersistentPrefStore::PrefReadError TestingPrefStore::ReadPrefs() {
78 void TestingPrefStore::ReadPrefsAsync(ReadErrorDelegate* error_delegate) {
87 void TestingPrefStore::CommitPendingWrite() { committed_ = true; }
89 void TestingPrefStore::SetInitializationCompleted() {
93 void TestingPrefStore::NotifyPrefValueChanged(const std::string& key) {
97 void TestingPrefStore::NotifyInitializationCompleted() {
106 void TestingPrefStore::ReportValueChanged(const std::string& key) {
110 void TestingPrefStore::SetString(const std::string& key,
115 void TestingPrefStore::SetInteger(const std::string& key, int value) {
119 void TestingPrefStore::SetBoolean(const std::string& key, bool value) {
123 bool TestingPrefStore::GetString(const std::string& key,
132 bool TestingPrefStore::GetInteger(const std::string& key, int* value) const {
140 bool TestingPrefStore::GetBoolean(const std::string& key, bool* value) const {
148 void TestingPrefStore::SetBlockAsyncRead(bool block_async_read) {
155 void TestingPrefStore::set_read_only(bool read_only) {
159 void TestingPrefStore::set_read_success(bool read_success) {
164 void TestingPrefStore::set_read_error(
170 TestingPrefStore::~TestingPrefStore() {}