Home
last modified time | relevance | path

Searched refs:live_registrations_ (Results 1 – 2 of 2) sorted by relevance

/external/chromium_org/content/browser/service_worker/
Dservice_worker_context_core.cc261 RegistrationsMap::iterator it = live_registrations_.find(id); in GetLiveRegistration()
262 return (it != live_registrations_.end()) ? it->second : NULL; in GetLiveRegistration()
268 live_registrations_[registration->id()] = registration; in AddLiveRegistration()
272 live_registrations_.erase(id); in RemoveLiveRegistration()
295 live_registrations_.begin(); in GetAllLiveRegistrationInfo()
296 iter != live_registrations_.end(); in GetAllLiveRegistrationInfo()
Dservice_worker_context_core.h215 std::map<int64, ServiceWorkerRegistration*> live_registrations_; in NON_EXPORTED_BASE() local