summaryrefslogtreecommitdiffstats
path: root/webkit/port/platform
diff options
context:
space:
mode:
authortc@google.com <tc@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2008-10-07 18:23:54 +0000
committertc@google.com <tc@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2008-10-07 18:23:54 +0000
commitea6cc17df150b17c177dff899a44fee3b691defc (patch)
treeeed31f8d81ea4826355181b9657f2d2fdc35f473 /webkit/port/platform
parente08c1c37b651ea4966774043a5943c7ffd848edf (diff)
downloadchromium_src-ea6cc17df150b17c177dff899a44fee3b691defc.zip
chromium_src-ea6cc17df150b17c177dff899a44fee3b691defc.tar.gz
chromium_src-ea6cc17df150b17c177dff899a44fee3b691defc.tar.bz2
More namespacing to fix the build.
TBR=amanada Review URL: http://codereview.chromium.org/6547 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@2951 0039d316-1c4b-4281-b951-d872f2087c98
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) {