| Index: base/prefs/pref_notifier_impl.cc
|
| diff --git a/base/prefs/pref_notifier_impl.cc b/base/prefs/pref_notifier_impl.cc
|
| index c02a7b3f5a5bfd8d4bd5c56ce20ca699e6d10346..ff5603c5d08a8bd5303a31f2568e5d3ce4f951ef 100644
|
| --- a/base/prefs/pref_notifier_impl.cc
|
| +++ b/base/prefs/pref_notifier_impl.cc
|
| @@ -94,6 +94,19 @@ void PrefNotifierImpl::OnInitializationCompleted(bool succeeded) {
|
| }
|
| }
|
|
|
| +// TODO(battre): Delete this. See crbug.com/373435.
|
| +void PrefNotifierImpl::BroadcastPrefServiceDestructionTrace(
|
| + const std::string& stack_trace) {
|
| + DCHECK(thread_checker_.CalledOnValidThread());
|
| + for (PrefObserverMap::iterator observer_iterator = pref_observers_.begin();
|
| + observer_iterator != pref_observers_.end();
|
| + ++observer_iterator) {
|
| + FOR_EACH_OBSERVER(PrefObserver,
|
| + *(observer_iterator->second),
|
| + SetPrefServiceDestructionTrace(stack_trace));
|
| + }
|
| +}
|
| +
|
| void PrefNotifierImpl::FireObservers(const std::string& path) {
|
| DCHECK(thread_checker_.CalledOnValidThread());
|
|
|
|
|