| Index: chrome/browser/autofill/form_group.cc
|
| diff --git a/chrome/browser/autofill/form_group.cc b/chrome/browser/autofill/form_group.cc
|
| index 4baa3318654e141a6e9376655a4f5abe09ad8587..1f17f07289bb8cce658c7cfc6eb9efb97d537d97 100644
|
| --- a/chrome/browser/autofill/form_group.cc
|
| +++ b/chrome/browser/autofill/form_group.cc
|
| @@ -31,7 +31,8 @@ bool FormGroup::IsSubsetOf(const FormGroup& form_group) const {
|
|
|
| for (FieldTypeSet::const_iterator iter = types.begin(); iter != types.end();
|
| ++iter) {
|
| - if (GetInfo(*iter) != form_group.GetInfo(*iter))
|
| + if (StringToLowerASCII(GetInfo(*iter)) !=
|
| + StringToLowerASCII(form_group.GetInfo(*iter)))
|
| return false;
|
| }
|
|
|
| @@ -53,7 +54,8 @@ bool FormGroup::IntersectionOfTypesHasEqualValues(
|
|
|
| for (FieldTypeSet::const_iterator iter = intersection.begin();
|
| iter != intersection.end(); ++iter) {
|
| - if (GetInfo(*iter) != form_group.GetInfo(*iter))
|
| + if (StringToLowerASCII(GetInfo(*iter)) !=
|
| + StringToLowerASCII(form_group.GetInfo(*iter)))
|
| return false;
|
| }
|
|
|
|
|