| Index: webkit/glue/form_field.cc
|
| diff --git a/webkit/glue/form_field.cc b/webkit/glue/form_field.cc
|
| index 798c5b2f28dd317d31488da27177680aeb82351e..6c8faff9251ca2559c7cd85f6a5eb15110e9b224 100644
|
| --- a/webkit/glue/form_field.cc
|
| +++ b/webkit/glue/form_field.cc
|
| @@ -33,6 +33,7 @@ bool FormField::operator==(const FormField& field) const {
|
| return (label == field.label &&
|
| name == field.name &&
|
| form_control_type == field.form_control_type &&
|
| + autocomplete_type == field.autocomplete_type &&
|
| max_length == field.max_length);
|
| }
|
|
|
| @@ -50,6 +51,8 @@ std::ostream& operator<<(std::ostream& os, const FormField& field) {
|
| << " "
|
| << UTF16ToUTF8(field.form_control_type)
|
| << " "
|
| + << UTF16ToUTF8(field.autocomplete_type)
|
| + << " "
|
| << field.max_length
|
| << " "
|
| << (field.is_autofilled ? "true" : "false");
|
|
|