| Index: ui/base/l10n/l10n_util_posix.cc
|
| diff --git a/ui/base/l10n/l10n_util_posix.cc b/ui/base/l10n/l10n_util_posix.cc
|
| index 5c65977a59c9d883c1b7db4ae4aece88ef365491..8871e6b60c444c2ed04c3c0e55e8fb719ae82947 100644
|
| --- a/ui/base/l10n/l10n_util_posix.cc
|
| +++ b/ui/base/l10n/l10n_util_posix.cc
|
| @@ -21,7 +21,7 @@ bool IsLocaleSupportedByOS(const std::string& locale) {
|
| // to return true.
|
| static const char* kUnsupportedLocales[] = {"am", "sw"};
|
| for (size_t i = 0; i < arraysize(kUnsupportedLocales); ++i) {
|
| - if (LowerCaseEqualsASCII(locale, kUnsupportedLocales[i]))
|
| + if (base::LowerCaseEqualsASCII(locale, kUnsupportedLocales[i]))
|
| return false;
|
| }
|
| return true;
|
|
|