| Index: chrome/browser/ui/autofill/autofill_dialog_controller_impl.cc
|
| diff --git a/chrome/browser/ui/autofill/autofill_dialog_controller_impl.cc b/chrome/browser/ui/autofill/autofill_dialog_controller_impl.cc
|
| index e1dd9b87d6f86b737b19b647fd940ec59ff0b429..234665be1df1bca3ba49a33a0072d987473b3e07 100644
|
| --- a/chrome/browser/ui/autofill/autofill_dialog_controller_impl.cc
|
| +++ b/chrome/browser/ui/autofill/autofill_dialog_controller_impl.cc
|
| @@ -2924,7 +2924,7 @@ void AutofillDialogControllerImpl::SuggestionsUpdated() {
|
| const AutofillProfile& profile = *profiles[i];
|
| if (!i18ninput::AddressHasCompleteAndVerifiedData(profile) ||
|
| !i18ninput::CountryIsFullySupported(
|
| - UTF16ToASCII(profile.GetRawInfo(ADDRESS_HOME_COUNTRY)))) {
|
| + base::UTF16ToASCII(profile.GetRawInfo(ADDRESS_HOME_COUNTRY)))) {
|
| continue;
|
| }
|
|
|
| @@ -3170,7 +3170,7 @@ bool AutofillDialogControllerImpl::ShouldSuggestProfile(
|
| DialogSection section,
|
| const AutofillProfile& profile) {
|
| std::string country_code =
|
| - UTF16ToASCII(profile.GetRawInfo(ADDRESS_HOME_COUNTRY));
|
| + base::UTF16ToASCII(profile.GetRawInfo(ADDRESS_HOME_COUNTRY));
|
| return country_code.empty() || CanAcceptCountry(section, country_code);
|
| }
|
|
|
|
|