| Index: chrome/browser/prefs/pref_notifier.cc
|
| ===================================================================
|
| --- chrome/browser/prefs/pref_notifier.cc (revision 59196)
|
| +++ chrome/browser/prefs/pref_notifier.cc (working copy)
|
| @@ -38,15 +38,13 @@
|
| }
|
|
|
| void PrefNotifier::OnPreferenceSet(const char* pref_name,
|
| - PrefNotifier::PrefStoreType new_store,
|
| - const Value* old_value) {
|
| - if (pref_value_store_->PrefHasChanged(pref_name, new_store, old_value))
|
| + PrefNotifier::PrefStoreType new_store) {
|
| + if (pref_value_store_->PrefHasChanged(pref_name, new_store))
|
| FireObservers(pref_name);
|
| }
|
|
|
| -void PrefNotifier::OnUserPreferenceSet(const char* pref_name,
|
| - const Value* old_value) {
|
| - OnPreferenceSet(pref_name, PrefNotifier::USER_STORE, old_value);
|
| +void PrefNotifier::OnUserPreferenceSet(const char* pref_name) {
|
| + OnPreferenceSet(pref_name, PrefNotifier::USER_STORE);
|
| }
|
|
|
| void PrefNotifier::FireObservers(const char* path) {
|
|
|