Chromium Code Reviews| Index: base/string_util.cc |
| diff --git a/base/string_util.cc b/base/string_util.cc |
| index fd8438aedc1e1b3fdaae16e7ebf2ca88fd7a457a..125c713be67ce0194c767e830f3a5cd863a42b05 100644 |
| --- a/base/string_util.cc |
| +++ b/base/string_util.cc |
| @@ -484,7 +484,7 @@ static inline bool DoLowerCaseEqualsASCII(Iter a_begin, |
| Iter a_end, |
| const char* b) { |
| for (Iter it = a_begin; it != a_end; ++it, ++b) { |
| - if (!*b || ToLowerASCII(*it) != *b) |
| + if (!*b || base::ToLowerASCII(*it) != *b) |
| return false; |
| } |
| return *b == 0; |