rename KURL to URL
https://bugs.webkit.org/show_bug.cgi?id=16214
Reviewed by Andreas Kling.
Source/WebCore:
* many files: Renamed, using script.
Source/WebKit:
* WebKit.vcxproj/WebKitExportGenerator/WebKitExports.def.in:
Let the script to try to rename here.
Source/WebKit/blackberry:
* many files: Renamed, using script.
Source/WebKit/efl:
* many files: Renamed, using script.
Source/WebKit/gtk:
* many files: Renamed, using script.
Source/WebKit/mac:
* many files: Renamed, using script.
Source/WebKit/qt:
* many files: Renamed, using script.
Source/WebKit/win:
* many files: Renamed, using script.
Source/WebKit/wince:
* many files: Renamed, using script.
Source/WebKit2:
* many files: Renamed, using script.
Tools:
* many files: Renamed, using script.
git-svn-id: http://svn.webkit.org/repository/webkit/trunk@156550 268f45cc-cd09-0410-ab3c-d52691b4dbfc
diff --git a/Source/WebCore/loader/DocumentThreadableLoader.cpp b/Source/WebCore/loader/DocumentThreadableLoader.cpp
index 3fe56f3..b0d8616 100644
--- a/Source/WebCore/loader/DocumentThreadableLoader.cpp
+++ b/Source/WebCore/loader/DocumentThreadableLoader.cpp
@@ -361,7 +361,7 @@
void DocumentThreadableLoader::loadRequest(const ResourceRequest& request, SecurityCheckPolicy securityCheck)
{
// Any credential should have been removed from the cross-site requests.
- const KURL& requestURL = request.url();
+ const URL& requestURL = request.url();
m_options.securityCheck = securityCheck;
ASSERT(m_sameOriginRequest || requestURL.user().isEmpty());
ASSERT(m_sameOriginRequest || requestURL.pass().isEmpty());
@@ -429,7 +429,7 @@
didFinishLoading(identifier, 0.0);
}
-bool DocumentThreadableLoader::isAllowedRedirect(const KURL& url)
+bool DocumentThreadableLoader::isAllowedRedirect(const URL& url)
{
if (m_options.crossOriginRequestPolicy == AllowCrossOriginRequests)
return true;