| Index: components/autofill/core/common/form_data.h
|
| diff --git a/components/autofill/core/common/form_data.h b/components/autofill/core/common/form_data.h
|
| index 1d6dffae2d8aa578f62d08c852c332263c816b4c..b41619c539048c5bf90caa2876876b084ced8b34 100644
|
| --- a/components/autofill/core/common/form_data.h
|
| +++ b/components/autofill/core/common/form_data.h
|
| @@ -19,7 +19,7 @@ struct FormData {
|
| FormData(const FormData& data);
|
| ~FormData();
|
|
|
| - // Used by FormStructureTest.
|
| + // Used in testing.
|
| bool operator==(const FormData& form) const;
|
| bool operator!=(const FormData& form) const;
|
|
|
| @@ -37,6 +37,9 @@ struct FormData {
|
| std::vector<FormFieldData> fields;
|
| };
|
|
|
| +// For testing.
|
| +std::ostream& operator<<(std::ostream& os, const FormData& form);
|
| +
|
| // Serialize FormData. Used by the PasswordManager to persist FormData
|
| // pertaining to password forms. Serialized data is appended to |pickle|
|
| void SerializeFormData(const FormData& form_data, Pickle* pickle);
|
|
|