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