diff options
-rw-r--r-- | chrome/browser/autofill/autofill_country.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/chrome/browser/autofill/autofill_country.cc b/chrome/browser/autofill/autofill_country.cc index a027981..897d543 100644 --- a/chrome/browser/autofill/autofill_country.cc +++ b/chrome/browser/autofill/autofill_country.cc @@ -317,7 +317,7 @@ CountryDataMap::CountryDataMap() { // Add any other countries that ICU knows about, falling back to default data // values. - for (const char* const* country_pointer = Locale::getISOCountries(); + for (const char* const* country_pointer = icu::Locale::getISOCountries(); *country_pointer; ++country_pointer) { std::string country_code = *country_pointer; |