summaryrefslogtreecommitdiffstats
path: root/WebCore/loader/PingLoader.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'WebCore/loader/PingLoader.cpp')
-rw-r--r--WebCore/loader/PingLoader.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/WebCore/loader/PingLoader.cpp b/WebCore/loader/PingLoader.cpp
index 268e007..2a628ce 100644
--- a/WebCore/loader/PingLoader.cpp
+++ b/WebCore/loader/PingLoader.cpp
@@ -42,7 +42,7 @@ namespace WebCore {
void PingLoader::loadImage(Frame* frame, const KURL& url)
{
- if (SecurityOrigin::restrictAccessToLocal() && !SecurityOrigin::canDisplay(url, String(), frame->document())) {
+ if (!frame->document()->securityOrigin()->canDisplay(url)) {
FrameLoader::reportLocalLoadFailed(frame, url);
return;
}
@@ -62,7 +62,7 @@ void PingLoader::loadImage(Frame* frame, const KURL& url)
PingLoader::PingLoader(Frame* frame, const ResourceRequest& request)
{
- m_handle = ResourceHandle::create(request, this, frame, false, false);
+ m_handle = ResourceHandle::create(frame->loader()->networkingContext(), request, this, false, false);
}
PingLoader::~PingLoader()