| Index: webkit/glue/form_data.h
|
| diff --git a/webkit/glue/form_data.h b/webkit/glue/form_data.h
|
| index f0011c7234e38a362cd4247b96ef2d45a4e1004b..d62599172b0f0e6874adb8e9e05c0da98aa14c83 100644
|
| --- a/webkit/glue/form_data.h
|
| +++ b/webkit/glue/form_data.h
|
| @@ -5,9 +5,10 @@
|
| #ifndef WEBKIT_GLUE_FORM_DATA_H__
|
| #define WEBKIT_GLUE_FORM_DATA_H__
|
|
|
| +#include <string>
|
| #include <vector>
|
|
|
| -#include "base/string_util.h"
|
| +#include "base/string16.h"
|
| #include "googleurl/src/gurl.h"
|
| #include "webkit/glue/form_field.h"
|
|
|
| @@ -23,6 +24,8 @@ struct FormData {
|
| GURL origin;
|
| // The action target of the form.
|
| GURL action;
|
| + // The locale of the form, according to the DOM.
|
| + std::string locale;
|
| // true if this form was submitted by a user gesture and not javascript.
|
| bool user_submitted;
|
| // A vector of all the input fields in the form.
|
|
|