Home | History | Annotate | Download | only in common

Lines Matching defs:FormData

17 struct FormData {
18 FormData();
19 FormData(const FormData& data);
20 ~FormData();
23 bool operator==(const FormData& form) const;
24 bool operator!=(const FormData& form) const;
26 // Allow FormData to be a key in STL containers.
27 bool operator<(const FormData& form) const;
44 std::ostream& operator<<(std::ostream& os, const FormData& form);
46 // Serialize FormData. Used by the PasswordManager to persist FormData
48 void SerializeFormData(const FormData& form_data, Pickle* pickle);
49 // Deserialize FormData. This assumes that |iter| is currently pointing to
51 bool DeserializeFormData(PickleIterator* iter, FormData* form_data);