OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:PrefNotifierImpl
(Results
1 - 5
of
5
) sorted by null
/external/chromium/chrome/browser/prefs/
pref_notifier_impl.h
20
class
PrefNotifierImpl
: public PrefNotifier,
23
explicit
PrefNotifierImpl
(PrefService* pref_service);
24
virtual ~
PrefNotifierImpl
();
55
DISALLOW_COPY_AND_ASSIGN(
PrefNotifierImpl
);
pref_notifier_impl.cc
12
PrefNotifierImpl
::
PrefNotifierImpl
(PrefService* service)
16
PrefNotifierImpl
::~
PrefNotifierImpl
() {
33
void
PrefNotifierImpl
::AddPrefObserver(const char* path,
59
void
PrefNotifierImpl
::RemovePrefObserver(const char* path,
73
void
PrefNotifierImpl
::OnPreferenceChanged(const std::string& path) {
77
void
PrefNotifierImpl
::OnInitializationCompleted() {
86
void
PrefNotifierImpl
::FireObservers(const std::string& path) {
pref_service.h
26
class
PrefNotifierImpl
;
270
scoped_ptr<
PrefNotifierImpl
> pref_notifier_;
pref_notifier_impl_unittest.cc
33
class MockPrefNotifier : public
PrefNotifierImpl
{
36
:
PrefNotifierImpl
(pref_service) {}
159
PrefNotifierImpl
notifier(&pref_service_);
pref_service.cc
152
pref_notifier_.reset(new
PrefNotifierImpl
(this));
172
pref_notifier_.reset(new
PrefNotifierImpl
(this));
Completed in 4427 milliseconds