1 // Copyright (c) 2010 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #include "base/prefs/pref_change_registrar.h"
8 #include "base/logging.h"
9 #include "base/prefs/pref_service.h"
11 PrefChangeRegistrar::PrefChangeRegistrar() : service_(NULL
) {}
13 PrefChangeRegistrar::~PrefChangeRegistrar() {
14 // If you see an invalid memory access in this destructor, this
15 // PrefChangeRegistrar might be subscribed to an OffTheRecordProfileImpl that
16 // has been destroyed. This should not happen any more but be warned.
17 // Feel free to contact battre@chromium.org in case this happens.
21 void PrefChangeRegistrar::Init(PrefService
* service
) {
22 DCHECK(IsEmpty() || service_
== service
);
26 void PrefChangeRegistrar::Add(const char* path
,
27 const base::Closure
& obs
) {
28 Add(path
, base::Bind(&PrefChangeRegistrar::InvokeUnnamedCallback
, obs
));
31 void PrefChangeRegistrar::Add(const char* path
,
32 const NamedChangeCallback
& obs
) {
37 DCHECK(!IsObserved(path
)) << "Already had this pref registered.";
39 service_
->AddPrefObserver(path
, this);
40 observers_
[path
] = obs
;
43 void PrefChangeRegistrar::Remove(const char* path
) {
44 DCHECK(IsObserved(path
));
46 observers_
.erase(path
);
47 service_
->RemovePrefObserver(path
, this);
50 void PrefChangeRegistrar::RemoveAll() {
51 for (ObserverMap::const_iterator it
= observers_
.begin();
52 it
!= observers_
.end(); ++it
) {
53 service_
->RemovePrefObserver(it
->first
.c_str(), this);
59 bool PrefChangeRegistrar::IsEmpty() const {
60 return observers_
.empty();
63 bool PrefChangeRegistrar::IsObserved(const std::string
& pref
) {
64 return observers_
.find(pref
) != observers_
.end();
67 bool PrefChangeRegistrar::IsManaged() {
68 for (ObserverMap::const_iterator it
= observers_
.begin();
69 it
!= observers_
.end(); ++it
) {
70 const PrefService::Preference
* pref
=
71 service_
->FindPreference(it
->first
.c_str());
72 if (pref
&& pref
->IsManaged())
78 void PrefChangeRegistrar::OnPreferenceChanged(PrefService
* service
,
79 const std::string
& pref
) {
81 observers_
[pref
].Run(pref
);
84 void PrefChangeRegistrar::InvokeUnnamedCallback(const base::Closure
& callback
,
85 const std::string
& pref_name
) {
89 PrefService
* PrefChangeRegistrar::prefs() {
93 const PrefService
* PrefChangeRegistrar::prefs() const {