| Index: trunk/src/components/autofill/core/browser/autofill_country.cc
|
| ===================================================================
|
| --- trunk/src/components/autofill/core/browser/autofill_country.cc (revision 289319)
|
| +++ trunk/src/components/autofill/core/browser/autofill_country.cc (working copy)
|
| @@ -934,8 +934,7 @@
|
| const std::string CountryNames::GetCountryCode(const base::string16& country,
|
| const std::string& locale) {
|
| // First, check common country names, including 2- and 3-letter country codes.
|
| - std::string country_utf8 =
|
| - base::UTF16ToUTF8(base::StringToUpperASCII(country));
|
| + std::string country_utf8 = base::UTF16ToUTF8(StringToUpperASCII(country));
|
| std::map<std::string, std::string>::const_iterator result =
|
| common_names_.find(country_utf8);
|
| if (result != common_names_.end())
|
|
|