Index: Source/core/loader/PingLoader.cpp |
diff --git a/Source/core/loader/PingLoader.cpp b/Source/core/loader/PingLoader.cpp |
index ff4bbd2c285c00f1252ac7762fdf31698dd4106f..c421759f0b3e792e53b548964e2ce6d252d7f581 100644 |
--- a/Source/core/loader/PingLoader.cpp |
+++ b/Source/core/loader/PingLoader.cpp |
@@ -127,9 +127,9 @@ PingLoader::PingLoader(Frame* frame, ResourceRequest& request, StoredCredentials |
frame->loader().client()->didDispatchPingLoader(request.url()); |
unsigned long identifier = createUniqueIdentifier(); |
- m_loader = adoptPtr(WebKit::Platform::current()->createURLLoader()); |
+ m_loader = adoptPtr(blink::Platform::current()->createURLLoader()); |
ASSERT(m_loader); |
- WebKit::WrappedResourceRequest wrappedRequest(request); |
+ blink::WrappedResourceRequest wrappedRequest(request); |
wrappedRequest.setAllowStoredCredentials(credentialsAllowed == AllowStoredCredentials); |
m_loader->loadAsynchronously(wrappedRequest, this); |