| Index: components/autofill/core/common/form_field_data.cc
|
| diff --git a/components/autofill/core/common/form_field_data.cc b/components/autofill/core/common/form_field_data.cc
|
| index d89e66e325e90a9001b160c79367f7b4a6708fc4..6c2d5ec312f5c47ccb984be039a3ef0378a89b55 100644
|
| --- a/components/autofill/core/common/form_field_data.cc
|
| +++ b/components/autofill/core/common/form_field_data.cc
|
| @@ -151,11 +151,11 @@ bool DeserializeFormFieldData(PickleIterator* iter,
|
|
|
| std::ostream& operator<<(std::ostream& os, const FormFieldData& field) {
|
| return os
|
| - << UTF16ToUTF8(field.label)
|
| + << base::UTF16ToUTF8(field.label)
|
| << " "
|
| - << UTF16ToUTF8(field.name)
|
| + << base::UTF16ToUTF8(field.name)
|
| << " "
|
| - << UTF16ToUTF8(field.value)
|
| + << base::UTF16ToUTF8(field.value)
|
| << " "
|
| << field.form_control_type
|
| << " "
|
|
|