Searched defs:finishTime (Results 1 - 21 of 21) sorted by last modified time

/external/webkit/Source/WebKit/chromium/public/
H A DWebURLLoaderClient.h67 virtual void didFinishLoading(WebURLLoader*, double finishTime) { } argument
/external/webkit/Source/WebKit/chromium/src/
H A DAssociatedURLLoader.cpp66 virtual void didFinishLoading(unsigned long /*identifier*/, double /*finishTime*/);
139 void AssociatedURLLoader::ClientAdapter::didFinishLoading(unsigned long identifier, double finishTime) argument
150 m_client->didFinishLoading(m_loader, finishTime);
H A DResourceHandle.cpp78 virtual void didFinishLoading(WebURLLoader*, double finishTime);
182 void ResourceHandleInternal::didFinishLoading(WebURLLoader*, double finishTime) argument
188 m_client->didFinishLoading(m_owner, finishTime);
/external/webkit/Source/WebCore/inspector/
H A DInspectorInstrumentation.cpp487 void InspectorInstrumentation::didFinishLoadingImpl(InspectorAgent* inspectorAgent, unsigned long identifier, double finishTime) argument
490 timelineAgent->didFinishLoadingResource(identifier, false, finishTime);
492 resourceAgent->didFinishLoading(identifier, finishTime);
H A DInspectorInstrumentation.h125 static void didFinishLoading(Frame*, unsigned long identifier, double finishTime);
245 static void didFinishLoadingImpl(InspectorAgent*, unsigned long identifier, double finishTime);
707 inline void InspectorInstrumentation::didFinishLoading(Frame* frame, unsigned long identifier, double finishTime) argument
711 didFinishLoadingImpl(inspectorAgent, identifier, finishTime);
H A DInspectorResourceAgent.cpp371 void InspectorResourceAgent::didFinishLoading(unsigned long identifier, double finishTime) argument
373 if (!finishTime)
374 finishTime = currentTime();
376 m_frontend->loadingFinished(static_cast<int>(identifier), finishTime); local
H A DInspectorTimelineAgent.cpp318 void InspectorTimelineAgent::didFinishLoadingResource(unsigned long identifier, bool didFail, double finishTime) argument
323 record->setObject("data", TimelineRecordFactory::createResourceFinishData(identifier, didFail, finishTime * 1000));
H A DTimelineRecordFactory.cpp150 PassRefPtr<InspectorObject> TimelineRecordFactory::createResourceFinishData(unsigned long identifier, bool didFail, double finishTime) argument
155 if (finishTime)
156 data->setNumber("networkTime", finishTime);
/external/webkit/Source/WebCore/loader/
H A DDocumentThreadableLoader.cpp259 void DocumentThreadableLoader::didFinishLoading(SubresourceLoader* loader, double finishTime) argument
263 didFinishLoading(loader->identifier(), finishTime);
266 void DocumentThreadableLoader::didFinishLoading(unsigned long identifier, double finishTime) argument
273 m_client->didFinishLoading(identifier, finishTime);
H A DMainResourceLoader.cpp457 void MainResourceLoader::didFinishLoading(double finishTime) argument
474 documentLoader()->timing()->responseEnd = finishTime ? finishTime : (m_timeOfLastDataReceived ? m_timeOfLastDataReceived : currentTime());
476 ResourceLoader::didFinishLoading(finishTime);
H A DNetscapePlugInStreamLoader.cpp104 void NetscapePlugInStreamLoader::didFinishLoading(double finishTime) argument
110 ResourceLoader::didFinishLoading(finishTime);
H A DResourceLoadNotifier.cpp85 void ResourceLoadNotifier::didFinishLoad(ResourceLoader* loader, double finishTime) argument
89 dispatchDidFinishLoading(loader->documentLoader(), loader->identifier(), finishTime);
140 void ResourceLoadNotifier::dispatchDidFinishLoading(DocumentLoader* loader, unsigned long identifier, double finishTime) argument
144 InspectorInstrumentation::didFinishLoading(m_frame, identifier, finishTime);
H A DResourceLoader.cpp305 void ResourceLoader::didFinishLoading(double finishTime) argument
313 didFinishLoadingOnePart(finishTime);
317 void ResourceLoader::didFinishLoadingOnePart(double finishTime) argument
327 frameLoader()->notifier()->didFinishLoad(this, finishTime);
443 void ResourceLoader::didFinishLoading(ResourceHandle*, double finishTime) argument
445 didFinishLoading(finishTime);
H A DSubresourceLoader.cpp182 void SubresourceLoader::didFinishLoading(double finishTime) argument
192 m_client->didFinishLoading(this, finishTime);
199 ResourceLoader::didFinishLoading(finishTime);
H A DThreadableLoaderClientWrapper.h83 void didFinishLoading(unsigned long identifier, double finishTime) argument
87 m_client->didFinishLoading(identifier, finishTime);
H A DWorkerThreadableLoader.cpp214 static void workerContextDidFinishLoading(ScriptExecutionContext* context, RefPtr<ThreadableLoaderClientWrapper> workerClientWrapper, unsigned long identifier, double finishTime) argument
217 workerClientWrapper->didFinishLoading(identifier, finishTime);
220 void WorkerThreadableLoader::MainThreadBridge::didFinishLoading(unsigned long identifier, double finishTime) argument
222 m_loaderProxy.postTaskForModeToWorkerContext(createCallbackTask(&workerContextDidFinishLoading, m_workerClientWrapper, identifier, finishTime), m_taskMode);
/external/webkit/Source/WebCore/loader/appcache/
H A DApplicationCacheGroup.cpp577 void ApplicationCacheGroup::didFinishLoading(ResourceHandle* handle, double finishTime) argument
580 InspectorInstrumentation::didFinishLoading(m_frame, m_currentResourceIdentifier, finishTime);
/external/chromium/webkit/glue/media/
H A Dbuffered_resource_loader.cc383 double finishTime) {
381 didFinishLoading( WebURLLoader* loader, double finishTime) argument
H A Dsimple_data_source.cc201 double finishTime) {
199 didFinishLoading( WebKit::WebURLLoader* loader, double finishTime) argument
/external/chromium/webkit/glue/
H A Dmultipart_response_delegate_unittest.cc78 virtual void didFinishLoading(WebURLLoader*, double finishTime) {} argument
H A Dresource_fetcher.cc108 WebURLLoader* loader, double finishTime) {
107 didFinishLoading( WebURLLoader* loader, double finishTime) argument

Completed in 161 milliseconds