| Index: components/autofill/core/browser/address_i18n.cc
|
| diff --git a/components/autofill/core/browser/address_i18n.cc b/components/autofill/core/browser/address_i18n.cc
|
| index 24af61ae1a37a47030b35df8116bbfdd40952466..ca74fc519df2e918c7a788b6c78dc27b44fe8234 100644
|
| --- a/components/autofill/core/browser/address_i18n.cc
|
| +++ b/components/autofill/core/browser/address_i18n.cc
|
| @@ -48,11 +48,10 @@ scoped_ptr<AddressData> CreateAddressData(
|
| get_info.Run(AutofillType(ADDRESS_HOME_SORTING_CODE)));
|
| address_data->postal_code = base::UTF16ToUTF8(
|
| get_info.Run(AutofillType(ADDRESS_HOME_ZIP)));
|
| - base::SplitString(
|
| + address_data->address_line = base::SplitString(
|
| base::UTF16ToUTF8(
|
| get_info.Run(AutofillType(ADDRESS_HOME_STREET_ADDRESS))),
|
| - '\n',
|
| - &address_data->address_line);
|
| + "\n", base::TRIM_WHITESPACE, base::SPLIT_WANT_ALL);
|
| return address_data.Pass();
|
| }
|
|
|
|
|