Home | History | Annotate | Download | only in prefs

Lines Matching defs:pref

19 void PrefSetObserver::AddPref(const std::string& pref) {
20 if (!prefs_.count(pref) && pref_service_->FindPreference(pref.c_str())) {
21 prefs_.insert(pref);
22 registrar_.Add(pref.c_str(), this);
26 void PrefSetObserver::RemovePref(const std::string& pref) {
27 if (prefs_.erase(pref))
28 registrar_.Remove(pref.c_str(), this);
31 bool PrefSetObserver::IsObserved(const std::string& pref) {
32 return prefs_.count(pref) > 0;
37 const PrefService::Preference* pref =
39 if (pref && pref->IsManaged())