| Index: components/autofill/core/browser/personal_data_manager.cc
|
| diff --git a/components/autofill/core/browser/personal_data_manager.cc b/components/autofill/core/browser/personal_data_manager.cc
|
| index da70ce2c5581f333ce83302a5003c8a9bd0012d0..7fd24c5b332e9003a61c70d823a08c96f45c52a8 100644
|
| --- a/components/autofill/core/browser/personal_data_manager.cc
|
| +++ b/components/autofill/core/browser/personal_data_manager.cc
|
| @@ -249,7 +249,7 @@ bool PersonalDataManager::ImportFormData(
|
| for (size_t i = 0; i < form.field_count(); ++i) {
|
| const AutofillField* field = form.field(i);
|
| base::string16 value;
|
| - TrimWhitespace(field->value, TRIM_ALL, &value);
|
| + base::TrimWhitespace(field->value, base::TRIM_ALL, &value);
|
|
|
| // If we don't know the type of the field, or the user hasn't entered any
|
| // information into the field, then skip it.
|
|
|