summaryrefslogtreecommitdiffstats
path: root/url/url_file.h
diff options
context:
space:
mode:
Diffstat (limited to 'url/url_file.h')
-rw-r--r--url/url_file.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/url/url_file.h b/url/url_file.h
index 085bb9a..f81c21f 100644
--- a/url/url_file.h
+++ b/url/url_file.h
@@ -15,10 +15,10 @@ namespace url_parse {
#ifdef WIN32
// We allow both "c:" and "c|" as drive identifiers.
-inline bool IsWindowsDriveSeparator(char16 ch) {
+inline bool IsWindowsDriveSeparator(base::char16 ch) {
return ch == ':' || ch == '|';
}
-inline bool IsWindowsDriveLetter(char16 ch) {
+inline bool IsWindowsDriveLetter(base::char16 ch) {
return (ch >= 'A' && ch <= 'Z') || (ch >= 'a' && ch <= 'z');
}