| Index: webkit/glue/form_field.cc
|
| diff --git a/webkit/glue/form_field.cc b/webkit/glue/form_field.cc
|
| index e38495737b0dea83012807fc3cc03701f65b4165..54022f9b9c88482ebf6fa74d6e5ced27ce390368 100644
|
| --- a/webkit/glue/form_field.cc
|
| +++ b/webkit/glue/form_field.cc
|
| @@ -24,20 +24,6 @@ FormField::FormField()
|
| is_autofilled(false) {
|
| }
|
|
|
| -FormField::FormField(const string16& label,
|
| - const string16& name,
|
| - const string16& value,
|
| - const string16& form_control_type,
|
| - int max_length,
|
| - bool is_autofilled)
|
| - : label(label),
|
| - name(name),
|
| - value(value),
|
| - form_control_type(form_control_type),
|
| - max_length(max_length),
|
| - is_autofilled(is_autofilled) {
|
| -}
|
| -
|
| FormField::~FormField() {
|
| }
|
|
|
| @@ -54,14 +40,6 @@ bool FormField::operator!=(const FormField& field) const {
|
| return !operator==(field);
|
| }
|
|
|
| -bool FormField::StrictlyEqualsHack(const FormField& field) const {
|
| - return (label == field.label &&
|
| - name == field.name &&
|
| - value == field.value &&
|
| - form_control_type == field.form_control_type &&
|
| - max_length == field.max_length);
|
| -}
|
| -
|
| std::ostream& operator<<(std::ostream& os, const FormField& field) {
|
| return os
|
| << UTF16ToUTF8(field.label)
|
|
|