diff options
Diffstat (limited to 'chrome/test/testing_pref_service.cc')
-rw-r--r-- | chrome/test/testing_pref_service.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/chrome/test/testing_pref_service.cc b/chrome/test/testing_pref_service.cc index 81d04e8..a5a3b98 100644 --- a/chrome/test/testing_pref_service.cc +++ b/chrome/test/testing_pref_service.cc @@ -62,11 +62,11 @@ void TestingPrefService::SetPref(PrefStore* pref_store, const char* path, Value* value) { pref_store->prefs()->Set(path, value); - FireObservers(path); + pref_notifier()->FireObservers(path); } void TestingPrefService::RemovePref(PrefStore* pref_store, const char* path) { pref_store->prefs()->Remove(path, NULL); - FireObservers(path); + pref_notifier()->FireObservers(path); } |