HomeSort by relevance Sort by last modified time
    Searched defs:PingLoader (Results 1 - 2 of 2) sorted by null

  /external/chromium_org/third_party/WebKit/Source/core/loader/
PingLoader.cpp 33 #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(frame, request, initiatorInfo, credentialsAllowed))
    [all...]
PingLoader.h 58 class PingLoader : public PageLifecycleObserver, private blink::WebURLLoaderClient {
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;

Completed in 303 milliseconds