| Index: chrome/browser/autofill/form_structure.cc
|
| diff --git a/chrome/browser/autofill/form_structure.cc b/chrome/browser/autofill/form_structure.cc
|
| index 9c184c2f87cfc92f9b7cc0e7857b7dc461a90426..2323f1a868d56aaf716973e87a7c604c216f5d25 100644
|
| --- a/chrome/browser/autofill/form_structure.cc
|
| +++ b/chrome/browser/autofill/form_structure.cc
|
| @@ -378,9 +378,7 @@ void FormStructure::GetHeuristicAutoFillTypes() {
|
|
|
| for (size_t index = 0; index < field_count(); index++) {
|
| AutoFillField* field = fields_[index];
|
| - // TODO(dhollowa): Defensive check for crash happening in the field.
|
| - // See http://crbug.com/42211
|
| - CHECK(field);
|
| + DCHECK(field);
|
| FieldTypeMap::iterator iter = field_type_map.find(field->unique_name());
|
|
|
| AutoFillFieldType heuristic_auto_fill_type;
|
|
|