HomeSort by relevance Sort by last modified time
    Searched refs:RemovePrefObserver (Results 1 - 16 of 16) sorted by null

  /external/chromium/chrome/browser/prefs/
pref_change_registrar_unittest.cc 26 MOCK_METHOD2(RemovePrefObserver, void(const char*, NotificationObserver*));
68 RemovePrefObserver(Eq(std::string("test.pref.1")), observer()));
70 RemovePrefObserver(Eq(std::string("test.pref.2")), observer()));
93 RemovePrefObserver(Eq(std::string("test.pref.1")), observer()));
109 RemovePrefObserver(Eq(std::string("test.pref.1")), observer()));
111 RemovePrefObserver(Eq(std::string("test.pref.2")), observer()));
pref_notifier_impl.h 29 void RemovePrefObserver(const char* path, NotificationObserver* obs);
pref_change_registrar.cc 51 service_->RemovePrefObserver(it->first.c_str(), it->second);
59 service_->RemovePrefObserver(it->first.c_str(), it->second);
pref_notifier_impl_unittest.cc 132 notifier.RemovePrefObserver(pref_name, &obs1_);
138 notifier.RemovePrefObserver(pref_name, &obs2_);
144 notifier.RemovePrefObserver(pref_name, &obs1_);
150 notifier.RemovePrefObserver(pref_name2, &obs1_);
179 notifier.RemovePrefObserver(kChangedPref, &obs1_);
188 notifier.RemovePrefObserver(kUnchangedPref, &obs1_);
196 notifier.RemovePrefObserver(kChangedPref, &obs2_);
197 notifier.RemovePrefObserver(kUnchangedPref, &obs2_);
pref_notifier_impl.cc 59 void PrefNotifierImpl::RemovePrefObserver(const char* path,
pref_member.cc 41 prefs_->RemovePrefObserver(pref_name_.c_str(), this);
pref_service.h 285 // access to the otherwise protected members Add/RemovePrefObserver.
309 virtual void RemovePrefObserver(const char* path, NotificationObserver* obs);
pref_service.cc 484 void PrefService::RemovePrefObserver(const char* path,
486 pref_notifier_->RemovePrefObserver(path, obs);
  /external/chromium_org/base/prefs/
pref_notifier_impl_unittest.cc 160 notifier.RemovePrefObserver(pref_name, &obs1_);
166 notifier.RemovePrefObserver(pref_name, &obs2_);
172 notifier.RemovePrefObserver(pref_name, &obs1_);
178 notifier.RemovePrefObserver(pref_name2, &obs1_);
206 notifier.RemovePrefObserver(kChangedPref, &obs1_);
215 notifier.RemovePrefObserver(kUnchangedPref, &obs1_);
223 notifier.RemovePrefObserver(kChangedPref, &obs2_);
224 notifier.RemovePrefObserver(kUnchangedPref, &obs2_);
pref_notifier_impl.h 33 void RemovePrefObserver(const char* path, PrefObserver* observer);
pref_change_registrar.cc 47 service_->RemovePrefObserver(path, this);
53 service_->RemovePrefObserver(it->first.c_str(), this);
pref_change_registrar_unittest.cc 32 MOCK_METHOD2(RemovePrefObserver,
76 RemovePrefObserver(Eq(std::string("test.pref.1")), &registrar));
78 RemovePrefObserver(Eq(std::string("test.pref.2")), &registrar));
101 RemovePrefObserver(Eq(std::string("test.pref.1")), &registrar));
117 RemovePrefObserver(Eq(std::string("test.pref.1")), &registrar));
119 RemovePrefObserver(Eq(std::string("test.pref.2")), &registrar));
pref_notifier_impl.cc 59 void PrefNotifierImpl::RemovePrefObserver(const char* path,
pref_service.h 298 // access to the otherwise protected members Add/RemovePrefObserver.
315 virtual void RemovePrefObserver(const char* path, PrefObserver* obs);
pref_member.cc 50 prefs_->RemovePrefObserver(pref_name_.c_str(), this);
pref_service.cc 311 void PrefService::RemovePrefObserver(const char* path, PrefObserver* obs) {
312 pref_notifier_->RemovePrefObserver(path, obs);

Completed in 66 milliseconds