Home | History | Annotate | Download | only in loader

Lines Matching refs:frame

12 #include "core/frame/LocalFrame.h"
22 void BeaconLoader::prepareRequest(LocalFrame* frame, ResourceRequest& request)
28 frame->loader().fetchContext().addAdditionalRequestHeaders(frame->document(), request, FetchSubresource);
29 frame->loader().fetchContext().setFirstPartyForCookies(request);
32 void BeaconLoader::issueRequest(LocalFrame* frame, ResourceRequest& request)
37 PingLoader::start(frame, request, initiatorInfo);
40 bool BeaconLoader::sendBeacon(LocalFrame* frame, int allowance, const KURL& beaconURL, const String& data, int& payloadLength)
43 prepareRequest(frame, request);
53 issueRequest(frame, request);
58 bool BeaconLoader::sendBeacon(LocalFrame* frame, int allowance, const KURL& beaconURL, PassRefPtr<ArrayBufferView>& data, int& payloadLength)
66 prepareRequest(frame, request);
75 issueRequest(frame, request);
80 bool BeaconLoader::sendBeacon(LocalFrame* frame, int allowance, const KURL& beaconURL, PassRefPtrWillBeRawPtr<Blob>& data, int& payloadLength)
88 prepareRequest(frame, request);
103 issueRequest(frame, request);
108 bool BeaconLoader::sendBeacon(LocalFrame* frame, int allowance, const KURL& beaconURL, PassRefPtrWillBeRawPtr<DOMFormData>& data, int& payloadLength)
112 prepareRequest(frame, request);
124 issueRequest(frame, request);