| Index: components/autofill/core/browser/address.cc
 | 
| diff --git a/components/autofill/core/browser/address.cc b/components/autofill/core/browser/address.cc
 | 
| index 031ff6b808e1b488b0e58814c010721e0a724dc5..de6514794d01becd9d229df36f4e7f19716e17ed 100644
 | 
| --- a/components/autofill/core/browser/address.cc
 | 
| +++ b/components/autofill/core/browser/address.cc
 | 
| @@ -108,7 +108,7 @@ void Address::SetRawInfo(ServerFieldType type, const base::string16& value) {
 | 
|      case ADDRESS_HOME_COUNTRY:
 | 
|        DCHECK(value.empty() ||
 | 
|               (value.length() == 2u && IsStringASCII(value)));
 | 
| -      country_code_ = UTF16ToASCII(value);
 | 
| +      country_code_ = base::UTF16ToASCII(value);
 | 
|        break;
 | 
|  
 | 
|      case ADDRESS_HOME_ZIP:
 | 
| @@ -149,7 +149,7 @@ bool Address::SetInfo(const AutofillType& type,
 | 
|        return false;
 | 
|      }
 | 
|  
 | 
| -    country_code_ = StringToUpperASCII(UTF16ToASCII(value));
 | 
| +    country_code_ = StringToUpperASCII(base::UTF16ToASCII(value));
 | 
|      return true;
 | 
|    }
 | 
|  
 | 
| 
 |