| Index: chrome/browser/autofill/form_group.cc
|
| diff --git a/chrome/browser/autofill/form_group.cc b/chrome/browser/autofill/form_group.cc
|
| index 4a853ebfcf84d8ccf66a5cea106a3eeb2409cb31..fcc8e95e9d8c8dacc9ceb45005c65c2c4407c403 100644
|
| --- a/chrome/browser/autofill/form_group.cc
|
| +++ b/chrome/browser/autofill/form_group.cc
|
| @@ -22,7 +22,7 @@ void FormGroup::GetMatchingTypes(const string16& text,
|
| // TODO(isherman): Matches are case-sensitive for now. Let's keep an eye on
|
| // this and decide whether there are compelling reasons to add case-
|
| // insensitivity.
|
| - if (GetInfo(*type) == text)
|
| + if (GetRawInfo(*type) == text)
|
| matching_types->insert(*type);
|
| }
|
| }
|
| @@ -32,17 +32,17 @@ void FormGroup::GetNonEmptyTypes(FieldTypeSet* non_empty_types) const {
|
| GetSupportedTypes(&types);
|
| for (FieldTypeSet::const_iterator type = types.begin();
|
| type != types.end(); ++type) {
|
| - if (!GetInfo(*type).empty())
|
| + if (!GetRawInfo(*type).empty())
|
| non_empty_types->insert(*type);
|
| }
|
| }
|
|
|
| string16 FormGroup::GetCanonicalizedInfo(AutofillFieldType type) const {
|
| - return GetInfo(type);
|
| + return GetRawInfo(type);
|
| }
|
|
|
| bool FormGroup::SetCanonicalizedInfo(AutofillFieldType type,
|
| const string16& value) {
|
| - SetInfo(type, value);
|
| + SetRawInfo(type, value);
|
| return true;
|
| }
|
|
|