| Index: chrome/browser/autofill/autofill_field.cc
|
| diff --git a/chrome/browser/autofill/autofill_field.cc b/chrome/browser/autofill/autofill_field.cc
|
| index 55bb7258e83669c987d359b1bb59a49e92de6f07..7058c53453695da93af25d5986ed07d907d9e211 100644
|
| --- a/chrome/browser/autofill/autofill_field.cc
|
| +++ b/chrome/browser/autofill/autofill_field.cc
|
| @@ -74,8 +74,7 @@ bool AutofillField::IsEmpty() const {
|
|
|
| std::string AutofillField::FieldSignature() const {
|
| std::string field_name = UTF16ToUTF8(name);
|
| - std::string type = UTF16ToUTF8(form_control_type);
|
| - std::string field_string = field_name + "&" + type;
|
| + std::string field_string = field_name + "&" + form_control_type;
|
| return Hash32Bit(field_string);
|
| }
|
|
|
|
|