Index: chrome/browser/autofill/autofill_manager.cc |
=================================================================== |
--- chrome/browser/autofill/autofill_manager.cc (revision 72012) |
+++ chrome/browser/autofill/autofill_manager.cc (working copy) |
@@ -484,6 +484,7 @@ |
const AutoFillField* field = submitted_form->field(i); |
FieldTypeSet field_types; |
personal_data_->GetPossibleFieldTypes(field->value(), &field_types); |
+ |
DCHECK(!field_types.empty()); |
Ilya Sherman
2011/01/21 00:25:58
What happened to this bit of code?
if (field_type
GeorgeY
2011/01/21 00:39:02
Do not want to bloat this cl too much, going to to
Ilya Sherman
2011/01/21 00:46:51
If we want to make the changes separately, we shou
dhollowa
2011/01/21 02:14:57
Ilya is correct. I wrote a "Washington Irving" un
GeorgeY
2011/01/21 03:41:32
Done.
|
submitted_form->set_possible_types(i, field_types); |
} |