Home | History | Annotate | Download | only in loader

Lines Matching refs:request

111 void ResourceLoadNotifier::assignIdentifierToInitialRequest(unsigned long identifier, DocumentLoader* loader, const ResourceRequest& request)
113 m_frame->loader()->client()->assignIdentifierToInitialRequest(identifier, loader, request);
117 page->inspectorController()->identifierForInitialRequest(identifier, loader, request);
121 void ResourceLoadNotifier::dispatchWillSendRequest(DocumentLoader* loader, unsigned long identifier, ResourceRequest& request, const ResourceResponse& redirectResponse)
123 StringImpl* oldRequestURL = request.url().string().impl();
124 m_frame->loader()->documentLoader()->didTellClientAboutLoad(request.url());
126 m_frame->loader()->client()->dispatchWillSendRequest(loader, identifier, request, redirectResponse);
129 if (!request.isNull() && oldRequestURL != request.url().string().impl())
130 m_frame->loader()->documentLoader()->didTellClientAboutLoad(request.url());
134 page->inspectorController()->willSendRequest(identifier, request, redirectResponse);