| Index: base/prefs/testing_pref_store.cc
|
| diff --git a/base/prefs/testing_pref_store.cc b/base/prefs/testing_pref_store.cc
|
| index f7c78305d7c27c95193e666a1ec5f27acbd7e98f..d40fb8ad747cc3818f09d5b78126f2346d49cc00 100644
|
| --- a/base/prefs/testing_pref_store.cc
|
| +++ b/base/prefs/testing_pref_store.cc
|
| @@ -12,14 +12,14 @@ TestingPrefStore::TestingPrefStore()
|
| init_complete_(false) {
|
| }
|
|
|
| -PrefStore::ReadResult TestingPrefStore::GetValue(const std::string& key,
|
| - const Value** value) const {
|
| - return prefs_.GetValue(key, value) ? READ_OK : READ_NO_VALUE;
|
| +bool TestingPrefStore::GetValue(const std::string& key,
|
| + const Value** value) const {
|
| + return prefs_.GetValue(key, value);
|
| }
|
|
|
| -PrefStore::ReadResult TestingPrefStore::GetMutableValue(const std::string& key,
|
| - Value** value) {
|
| - return prefs_.GetValue(key, value) ? READ_OK : READ_NO_VALUE;
|
| +bool TestingPrefStore::GetMutableValue(const std::string& key,
|
| + Value** value) {
|
| + return prefs_.GetValue(key, value);
|
| }
|
|
|
| void TestingPrefStore::AddObserver(PrefStore::Observer* observer) {
|
|
|