Lines Matching refs:FormGroup
18 class FormGroup {
20 virtual ~FormGroup() {}
28 // Returns a set of AutofillFieldTypes for which this FormGroup has non-empty
36 // Used to populate this FormGroup object with data.
39 // Returns the label for this FormGroup item. This should be overridden for
44 // data in this FormGroup.
45 virtual bool operator!=(const FormGroup& form_group) const;
47 // Returns true if the data in this FormGroup is a subset of the data in
49 bool IsSubsetOf(const FormGroup& form_group) const;
53 bool IntersectionOfTypesHasEqualValues(const FormGroup& form_group) const;
55 // Merges the field data in |form_group| with this FormGroup.
56 void MergeWith(const FormGroup& form_group);
58 // Overwrites the field data in |form_group| with this FormGroup.
59 void OverwriteWith(const FormGroup& form_group);