| Index: chrome/browser/autofill/contact_info.cc
|
| ===================================================================
|
| --- chrome/browser/autofill/contact_info.cc (revision 75286)
|
| +++ chrome/browser/autofill/contact_info.cc (working copy)
|
| @@ -135,7 +135,7 @@
|
|
|
| void ContactInfo::SetInfo(const AutoFillType& type, const string16& value) {
|
| AutoFillFieldType field_type = type.field_type();
|
| - DCHECK(type.group() == AutoFillType::CONTACT_INFO);
|
| + DCHECK_EQ(type.group(), AutoFillType::CONTACT_INFO);
|
| if (field_type == NAME_FIRST)
|
| SetFirst(value);
|
| else if (field_type == NAME_MIDDLE || field_type == NAME_MIDDLE_INITIAL)
|
|
|