Searched defs:PingLoader (Results 1 - 2 of 2) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/loader/
H A DPingLoader.h58 class PingLoader : public PageLifecycleObserver, private blink::WebURLLoaderClient { class in namespace:blink
59 WTF_MAKE_NONCOPYABLE(PingLoader);
62 virtual ~PingLoader();
74 PingLoader(LocalFrame*, ResourceRequest&, const FetchInitiatorInfo&, StoredCredentials);
84 void timeout(Timer<PingLoader>*);
87 Timer<PingLoader> m_timeout;
H A DPingLoader.cpp33 #include "core/loader/PingLoader.h"
59 void PingLoader::loadImage(LocalFrame* frame, const KURL& url)
74 PingLoader::start(frame, request, initiatorInfo);
78 void PingLoader::sendLinkAuditPing(LocalFrame* frame, const KURL& pingURL, const KURL& destinationURL)
104 PingLoader::start(frame, request, initiatorInfo);
107 void PingLoader::sendViolationReport(LocalFrame* frame, const KURL& reportURL, PassRefPtr<FormData> report, ViolationReportType type)
119 PingLoader::start(frame, request, initiatorInfo, SecurityOrigin::create(reportURL)->isSameSchemeHostPort(frame->document()->securityOrigin()) ? AllowStoredCredentials : DoNotAllowStoredCredentials);
122 void PingLoader::start(LocalFrame* frame, ResourceRequest& request, const FetchInitiatorInfo& initiatorInfo, StoredCredentials credentialsAllowed)
127 OwnPtr<PingLoader> pingLoader = adoptPtr(new PingLoader(fram
133 PingLoader::PingLoader(LocalFrame* frame, ResourceRequest& request, const FetchInitiatorInfo& initiatorInfo, StoredCredentials credentialsAllowed) function in class:blink::PingLoader
[all...]

Completed in 260 milliseconds