Chromium Code Reviews| Index: components/autofill/browser/wallet/wallet_address.cc |
| =================================================================== |
| --- components/autofill/browser/wallet/wallet_address.cc (revision 192389) |
| +++ components/autofill/browser/wallet/wallet_address.cc (working copy) |
| @@ -82,7 +82,7 @@ |
| Address::Address() {} |
| Address::Address(const AutofillProfile& profile) |
| - : country_name_code_(profile.CountryCode()), |
| + : country_name_code_(WideToASCII(profile.GetRawInfo(ADDRESS_HOME_COUNTRY))), |
|
Ilya Sherman
2013/04/05 05:18:01
I think you want UTF16ToASCII here... though actua
jam
2013/04/05 06:45:54
Done
|
| recipient_name_(profile.GetRawInfo(NAME_FULL)), |
| address_line_1_(profile.GetRawInfo(ADDRESS_HOME_LINE1)), |
| address_line_2_(profile.GetRawInfo(ADDRESS_HOME_LINE2)), |