Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1352)

Unified Diff: Source/platform/exported/WebURL.cpp

Issue 400543004: Rename WebCore namespace to blink in Platform (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « Source/platform/exported/WebThreadSafeData.cpp ('k') | Source/platform/exported/WebURLError.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/platform/exported/WebURL.cpp
diff --git a/Source/platform/exported/WebURL.cpp b/Source/platform/exported/WebURL.cpp
index fcde15b2f3a9670f61d52880672ba42b7fc3e5ce..65be8d3b769d534f05110e875172f1fe3755644a 100644
--- a/Source/platform/exported/WebURL.cpp
+++ b/Source/platform/exported/WebURL.cpp
@@ -35,14 +35,14 @@
namespace blink {
-WebURL::WebURL(const WebCore::KURL& url)
+WebURL::WebURL(const blink::KURL& url)
: m_string(url.string())
, m_parsed(url.parsed())
, m_isValid(url.isValid())
{
}
-WebURL& WebURL::operator=(const WebCore::KURL& url)
+WebURL& WebURL::operator=(const blink::KURL& url)
{
m_string = url.string();
m_parsed = url.parsed();
@@ -50,9 +50,9 @@ WebURL& WebURL::operator=(const WebCore::KURL& url)
return *this;
}
-WebURL::operator WebCore::KURL() const
+WebURL::operator blink::KURL() const
{
- return WebCore::KURL(m_string, m_parsed, m_isValid);
+ return blink::KURL(m_string, m_parsed, m_isValid);
}
} // namespace blink
« no previous file with comments | « Source/platform/exported/WebThreadSafeData.cpp ('k') | Source/platform/exported/WebURLError.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698