Home | History | Annotate | Download | only in appcache

Lines Matching refs:EventID

1067     static PassOwnPtr<CallCacheListenerTask> create(PassRefPtr<DocumentLoader> loader, ApplicationCacheHost::EventID eventID, int progressTotal, int progressDone)
1069 return adoptPtr(new CallCacheListenerTask(loader, eventID, progressTotal, progressDone));
1086 CallCacheListenerTask(PassRefPtr<DocumentLoader> loader, ApplicationCacheHost::EventID eventID, int progressTotal, int progressDone)
1088 , m_eventID(eventID)
1095 ApplicationCacheHost::EventID m_eventID;
1100 void ApplicationCacheGroup::postListenerTask(ApplicationCacheHost::EventID eventID, int progressTotal, int progressDone, const HashSet<DocumentLoader*>& loaderSet)
1104 postListenerTask(eventID, progressTotal, progressDone, *iter);
1107 void ApplicationCacheGroup::postListenerTask(ApplicationCacheHost::EventID eventID, int progressTotal, int progressDone, DocumentLoader* loader)
1115 frame->document()->postTask(CallCacheListenerTask::create(loader, eventID, progressTotal, progressDone));