summaryrefslogtreecommitdiffstats
path: root/url/url_canon_relative.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_relative.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_relative.cc')
-rw-r--r--url/url_canon_relative.cc8
1 files changed, 4 insertions, 4 deletions
diff --git a/url/url_canon_relative.cc b/url/url_canon_relative.cc
index 52ae169..30956a6 100644
--- a/url/url_canon_relative.cc
+++ b/url/url_canon_relative.cc
@@ -515,12 +515,12 @@ bool IsRelativeURL(const char* base,
bool IsRelativeURL(const char* base,
const url_parse::Parsed& base_parsed,
- const char16* fragment,
+ const base::char16* fragment,
int fragment_len,
bool is_base_hierarchical,
bool* is_relative,
url_parse::Component* relative_component) {
- return DoIsRelativeURL<char16>(
+ return DoIsRelativeURL<base::char16>(
base, base_parsed, fragment, fragment_len, is_base_hierarchical,
is_relative, relative_component);
}
@@ -541,12 +541,12 @@ bool ResolveRelativeURL(const char* base_url,
bool ResolveRelativeURL(const char* base_url,
const url_parse::Parsed& base_parsed,
bool base_is_file,
- const char16* relative_url,
+ const base::char16* relative_url,
const url_parse::Component& relative_component,
CharsetConverter* query_converter,
CanonOutput* output,
url_parse::Parsed* out_parsed) {
- return DoResolveRelativeURL<char16>(
+ return DoResolveRelativeURL<base::char16>(
base_url, base_parsed, base_is_file, relative_url,
relative_component, query_converter, output, out_parsed);
}