summaryrefslogtreecommitdiffstats
path: root/url/url_canon_filesystemurl.cc
diff options
context:
space:
mode:
authoravi@chromium.org <avi@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-06-11 21:21:57 +0000
committeravi@chromium.org <avi@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-06-11 21:21:57 +0000
commit3774f835ddbe5005ad49c5a1818b3fcbfff4f703 (patch)
tree57fc897925de5dffb8e66cc2f4cdf23a8f3762f0 /url/url_canon_filesystemurl.cc
parente8eecbf087af308f5dd0440923ea85f877041e2b (diff)
downloadchromium_src-3774f835ddbe5005ad49c5a1818b3fcbfff4f703.zip
chromium_src-3774f835ddbe5005ad49c5a1818b3fcbfff4f703.tar.gz
chromium_src-3774f835ddbe5005ad49c5a1818b3fcbfff4f703.tar.bz2
Use base:: on string16 and char16 in net/ and url/
BUG=none TEST=no change TBR=brettw@chromium.org Review URL: https://codereview.chromium.org/16413006 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@205636 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'url/url_canon_filesystemurl.cc')
-rw-r--r--url/url_canon_filesystemurl.cc10
1 files changed, 5 insertions, 5 deletions
diff --git a/url/url_canon_filesystemurl.cc b/url/url_canon_filesystemurl.cc
index e563309..7f1d393 100644
--- a/url/url_canon_filesystemurl.cc
+++ b/url/url_canon_filesystemurl.cc
@@ -92,15 +92,15 @@ bool CanonicalizeFileSystemURL(const char* spec,
new_parsed);
}
-bool CanonicalizeFileSystemURL(const char16* spec,
+bool CanonicalizeFileSystemURL(const base::char16* spec,
int spec_len,
const url_parse::Parsed& parsed,
CharsetConverter* charset_converter,
CanonOutput* output,
url_parse::Parsed* new_parsed) {
- return DoCanonicalizeFileSystemURL<char16, char16>(
- spec, URLComponentSource<char16>(spec), parsed, charset_converter, output,
- new_parsed);
+ return DoCanonicalizeFileSystemURL<base::char16, base::char16>(
+ spec, URLComponentSource<base::char16>(spec), parsed, charset_converter,
+ output, new_parsed);
}
bool ReplaceFileSystemURL(const char* base,
@@ -118,7 +118,7 @@ bool ReplaceFileSystemURL(const char* base,
bool ReplaceFileSystemURL(const char* base,
const url_parse::Parsed& base_parsed,
- const Replacements<char16>& replacements,
+ const Replacements<base::char16>& replacements,
CharsetConverter* charset_converter,
CanonOutput* output,
url_parse::Parsed* new_parsed) {