diff options
Diffstat (limited to 'webkit/glue/form_field.h')
-rw-r--r-- | webkit/glue/form_field.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/webkit/glue/form_field.h b/webkit/glue/form_field.h index 224934d..92e8faea 100644 --- a/webkit/glue/form_field.h +++ b/webkit/glue/form_field.h @@ -14,15 +14,18 @@ class FormField { public: FormField(); FormField(const string16& name, + const string16& html_input_type, const string16& value); string16 name() const { return name_; } + string16 html_input_type() const { return html_input_type_; } string16 value() const { return value_; } void set_value(const string16& value) { value_ = value; } private: string16 name_; + string16 html_input_type_; string16 value_; }; |