/external/chromium/chrome/browser/chromeos/ |
update_browsertest.cc | 26 typedef ObserverList<chromeos::UpdateLibrary::Observer> Observers; 29 Observers* observers, 35 FOR_EACH_OBSERVER(chromeos::UpdateLibrary::Observer, *observers, 40 Observers* observer) { 75 Observers* observer) { 105 Observers observers; local 108 .WillRepeatedly(Invoke(&observers, 109 &Observers::AddObserver)) [all...] |
/external/chromium_org/chrome/browser/chromeos/contacts/ |
contact_manager.h | 96 typedef ObserverList<ContactManagerObserver> Observers; 98 typedef std::map<Profile*, Observers*> ProfileObserversMap; 100 // Returns the list of observers interested in |profile|. If not present, 102 Observers* GetObserversForProfile(Profile* profile, bool create); 110 // Maps from a profile to observers that are interested in changes to that
|
contact_manager.cc | 92 Observers* observers = GetObserversForProfile(profile, true); local 93 observers->AddObserver(observer); 101 Observers* observers = GetObserversForProfile(profile, false); local 102 if (observers) 103 observers->RemoveObserver(observer); 132 Observers* observers = GetObserversForProfile(profile, false); local 133 if (observers) { [all...] |
/external/chromium_org/chrome/browser/policy/ |
policy_service_impl.h | 51 typedef ObserverList<PolicyService::Observer, true> Observers; 52 typedef std::map<PolicyDomain, Observers*> ObserverMap; 57 // Posts a task to notify observers of |ns| that its policies have changed, 63 // Combines the policies from all the providers, and notifies the observers 67 // Checks if all providers are initialized, and notifies the observers
|
policy_service_impl.cc | 32 // There are no observers yet, but calls to GetPolicies() should already get 45 Observers*& list = observers_[domain]; 47 list = new Observers(); 146 // Swap first, so that observers that call GetPolicies() see the current 150 // Only notify observers of namespaces that have been modified. 189 // notify that domain's observers.
|
/external/chromium/chrome/browser/net/ |
pref_proxy_config_service_unittest.cc | 157 TEST_F(PrefProxyConfigServiceTest, Observers) { 163 // Firing the observers in the delegate should trigger a notification.
|
/external/chromium_org/base/prefs/ |
pref_service_unittest.cc | 77 TEST(PrefServiceTest, Observers) {
|
/external/chromium_org/chrome/browser/net/ |
pref_proxy_config_tracker_impl_unittest.cc | 168 TEST_F(PrefProxyConfigTrackerImplTest, Observers) { 174 // Firing the observers in the delegate should trigger a notification.
|
/external/chromium/chrome/browser/prefs/ |
pref_service_unittest.cc | 110 TEST(PrefServiceTest, Observers) {
|
/external/chromium_org/chrome/renderer/resources/extensions/ |
ad_view.js | 5 // Shim that simulates a <adview> tag via Mutation Observers.
|
web_view.js | 5 // Shim that simulates a <webview> tag via Mutation Observers.
|
/external/chromium/net/base/ |
host_resolver_impl_unittest.cc | 941 // Test that registering, unregistering, and notifying of observers works. 944 TEST_F(HostResolverImplTest, Observers) { [all...] |