| Index: ui/base/l10n/l10n_util.cc
|
| diff --git a/ui/base/l10n/l10n_util.cc b/ui/base/l10n/l10n_util.cc
|
| index 426c8b56b96d13f14720d7cbbb6e539aec55b77b..3191a51a17a5ee87d81e913e5316e03177081bce 100644
|
| --- a/ui/base/l10n/l10n_util.cc
|
| +++ b/ui/base/l10n/l10n_util.cc
|
| @@ -202,7 +202,7 @@ bool IsDuplicateName(const std::string& locale_name) {
|
|
|
| // Skip all the es_Foo other than es_419 for now.
|
| if (base::StartsWithASCII(locale_name, "es_", false))
|
| - return !EndsWith(locale_name, "419", true);
|
| + 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)
|
|
|