summaryrefslogtreecommitdiffstats
path: root/webkit/port/platform
diff options
context:
space:
mode:
Diffstat (limited to 'webkit/port/platform')
-rw-r--r--webkit/port/platform/GKURL.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/webkit/port/platform/GKURL.cpp b/webkit/port/platform/GKURL.cpp
index 21ceb70..6b054e0 100644
--- a/webkit/port/platform/GKURL.cpp
+++ b/webkit/port/platform/GKURL.cpp
@@ -463,7 +463,7 @@ void KURL::setPort(unsigned short i)
if (i > 0) {
portStr = String::number(static_cast<int>(i));
replacements.SetPort(
- reinterpret_cast<const UTF16Char*>(portStr.characters()),
+ reinterpret_cast<const url_parse::UTF16Char*>(portStr.characters()),
url_parse::Component(0, portStr.length()));
} else {
@@ -661,7 +661,7 @@ String decodeURLEscapeSequences(const String& str, const TextEncoding& encoding)
// Convert that 8-bit to UTF-16. It's not clear IE does this at all to
// JavaScript URLs, but Firefox and Safari do.
- url_canon::RawCanonOutputT<UTF16Char> utf16;
+ url_canon::RawCanonOutputT<url_parse::UTF16Char> utf16;
for (int i = 0; i < unescaped.length(); i++) {
unsigned char uch = static_cast<unsigned char>(unescaped.at(i));
if (uch < 0x80) {