| Index: components/autofill/core/browser/address.cc
|
| diff --git a/components/autofill/core/browser/address.cc b/components/autofill/core/browser/address.cc
|
| index 2cf5f51d2f5a3ea4f9629dc2f8f806ce70ea6d8b..e0c2a9cf560cb0df8e7296541a8091443eba231c 100644
|
| --- a/components/autofill/core/browser/address.cc
|
| +++ b/components/autofill/core/browser/address.cc
|
| @@ -161,7 +161,7 @@ bool Address::SetInfo(const AutofillType& type,
|
| return false;
|
| }
|
|
|
| - country_code_ = base::StringToUpperASCII(base::UTF16ToASCII(value));
|
| + country_code_ = base::ToUpperASCII(base::UTF16ToASCII(value));
|
| return true;
|
| } else if (type.html_type() == HTML_TYPE_FULL_ADDRESS) {
|
| // Parsing a full address is too hard.
|
|
|