| Index: chrome/browser/prefs/pref_notifier_impl.cc
|
| diff --git a/chrome/browser/prefs/pref_notifier_impl.cc b/chrome/browser/prefs/pref_notifier_impl.cc
|
| index d5ad24c94338f2748ed19ca59291095f808a608b..6d1dd2a9b12a581ded6cabe9f34c9178cdc8f653 100644
|
| --- a/chrome/browser/prefs/pref_notifier_impl.cc
|
| +++ b/chrome/browser/prefs/pref_notifier_impl.cc
|
| @@ -74,13 +74,13 @@ void PrefNotifierImpl::OnPreferenceChanged(const std::string& path) {
|
| FireObservers(path);
|
| }
|
|
|
| -void PrefNotifierImpl::OnInitializationCompleted() {
|
| +void PrefNotifierImpl::OnInitializationCompleted(bool succeeded) {
|
| DCHECK(CalledOnValidThread());
|
|
|
| NotificationService::current()->Notify(
|
| NotificationType::PREF_INITIALIZATION_COMPLETED,
|
| Source<PrefService>(pref_service_),
|
| - NotificationService::NoDetails());
|
| + Details<bool>(&succeeded));
|
| }
|
|
|
| void PrefNotifierImpl::FireObservers(const std::string& path) {
|
|
|