| Index: ui/base/l10n/l10n_util.cc
|
| diff --git a/ui/base/l10n/l10n_util.cc b/ui/base/l10n/l10n_util.cc
|
| index 4182f42ec6d4657f5fc73c5afb2389c243a70eac..0ef20ba41b23504798d0e055f9232f6129d72122 100644
|
| --- a/ui/base/l10n/l10n_util.cc
|
| +++ b/ui/base/l10n/l10n_util.cc
|
| @@ -205,7 +205,7 @@ bool IsDuplicateName(const std::string& locale_name) {
|
| return !base::EndsWith(locale_name, "419", true);
|
|
|
| for (size_t i = 0; i < arraysize(kDuplicateNames); ++i) {
|
| - if (base::strcasecmp(kDuplicateNames[i], locale_name.c_str()) == 0)
|
| + if (base::EqualsCaseInsensitiveASCII(kDuplicateNames[i], locale_name))
|
| return true;
|
| }
|
| return false;
|
|
|