| Index: components/autofill/core/common/form_field_data.h
|
| diff --git a/components/autofill/core/common/form_field_data.h b/components/autofill/core/common/form_field_data.h
|
| index ef96b73a469473f268526d5f31566f7f938b5da1..d43c2bb0c3113f5d9b90fde880b623c9d1beac63 100644
|
| --- a/components/autofill/core/common/form_field_data.h
|
| +++ b/components/autofill/core/common/form_field_data.h
|
| @@ -10,8 +10,10 @@
|
| #include "base/i18n/rtl.h"
|
| #include "base/strings/string16.h"
|
|
|
| +namespace base {
|
| class Pickle;
|
| class PickleIterator;
|
| +}
|
|
|
| namespace autofill {
|
|
|
| @@ -58,8 +60,8 @@ struct FormFieldData {
|
| // Serialize and deserialize FormFieldData. These are used when FormData objects
|
| // are serialized and deserialized.
|
| void SerializeFormFieldData(const FormFieldData& form_field_data,
|
| - Pickle* serialized);
|
| -bool DeserializeFormFieldData(PickleIterator* pickle_iterator,
|
| + base::Pickle* serialized);
|
| +bool DeserializeFormFieldData(base::PickleIterator* pickle_iterator,
|
| FormFieldData* form_field_data);
|
|
|
| // So we can compare FormFieldDatas with EXPECT_EQ().
|
|
|