| 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 590cfb7b58d5fab431d33fe7663bc1c36906ddb4..6415ff82ea1e7f07174992af1f1bef38180e81a4 100644
|
| --- a/ui/base/l10n/l10n_util_posix.cc
|
| +++ b/ui/base/l10n/l10n_util_posix.cc
|
| @@ -18,7 +18,7 @@ bool IsLocaleSupportedByOS(const std::string& locale) {
|
| // to return true.
|
| static const char kUnsupportedLocales[][3] = {"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;
|
|
|