Index: Source/platform/exported/WebURL.cpp |
diff --git a/Source/platform/exported/WebURL.cpp b/Source/platform/exported/WebURL.cpp |
index 65be8d3b769d534f05110e875172f1fe3755644a..755d026727802a0ff0d133d1567ff084b08859fe 100644 |
--- a/Source/platform/exported/WebURL.cpp |
+++ b/Source/platform/exported/WebURL.cpp |
@@ -35,14 +35,14 @@ |
namespace blink { |
-WebURL::WebURL(const blink::KURL& url) |
+WebURL::WebURL(const KURL& url) |
: m_string(url.string()) |
, m_parsed(url.parsed()) |
, m_isValid(url.isValid()) |
{ |
} |
-WebURL& WebURL::operator=(const blink::KURL& url) |
+WebURL& WebURL::operator=(const KURL& url) |
{ |
m_string = url.string(); |
m_parsed = url.parsed(); |
@@ -50,9 +50,9 @@ WebURL& WebURL::operator=(const blink::KURL& url) |
return *this; |
} |
-WebURL::operator blink::KURL() const |
+WebURL::operator KURL() const |
{ |
- return blink::KURL(m_string, m_parsed, m_isValid); |
+ return KURL(m_string, m_parsed, m_isValid); |
} |
} // namespace blink |