diff options
Diffstat (limited to 'chrome/browser/autofill/form_group.cc')
-rw-r--r-- | chrome/browser/autofill/form_group.cc | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/chrome/browser/autofill/form_group.cc b/chrome/browser/autofill/form_group.cc index 83f3147..e99059b 100644 --- a/chrome/browser/autofill/form_group.cc +++ b/chrome/browser/autofill/form_group.cc @@ -4,6 +4,12 @@ #include "chrome/browser/autofill/form_group.h" +string16 FormGroup::GetPreviewText(const AutoFillType& type) const { + return GetFieldText(type); +} + +const string16& FormGroup::Label() const { return EmptyString16(); } + bool FormGroup::operator!=(const FormGroup& form_group) const { FieldTypeSet a, b, symmetric_difference; GetAvailableFieldTypes(&a); |