summaryrefslogtreecommitdiffstats
path: root/webkit/glue/form_data.h
diff options
context:
space:
mode:
authordarin@chromium.org <darin@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-10-20 19:25:42 +0000
committerdarin@chromium.org <darin@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-10-20 19:25:42 +0000
commit00e3f152083aea092353b3d284c368b48136f33c (patch)
tree081df57119ba9301bebd7c7091efc4acab5accc9 /webkit/glue/form_data.h
parent4e6f2f037e6d1956bc431ac37a72d8e6871586d8 (diff)
downloadchromium_src-00e3f152083aea092353b3d284c368b48136f33c.zip
chromium_src-00e3f152083aea092353b3d284c368b48136f33c.tar.gz
chromium_src-00e3f152083aea092353b3d284c368b48136f33c.tar.bz2
Convert some structures in webkit/glue to string16.
R=yaar BUG=none TEST=none Review URL: http://codereview.chromium.org/305002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@29549 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'webkit/glue/form_data.h')
-rw-r--r--webkit/glue/form_data.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/webkit/glue/form_data.h b/webkit/glue/form_data.h
index 0223e6c..8c5876c 100644
--- a/webkit/glue/form_data.h
+++ b/webkit/glue/form_data.h
@@ -16,11 +16,11 @@ struct FormData {
// The action target of the form
GURL action;
// A list of element names to be filled
- std::vector<std::wstring> elements;
+ std::vector<string16> elements;
// A list of element values to be filled
- std::vector<std::wstring> values;
+ std::vector<string16> values;
// The name of the submit button to be used to submit (optional)
- std::wstring submit;
+ string16 submit;
};
#endif // WEBKIT_GLUE_FORM_DATA_H__