From 00e3f152083aea092353b3d284c368b48136f33c Mon Sep 17 00:00:00 2001 From: "darin@chromium.org" Date: Tue, 20 Oct 2009 19:25:42 +0000 Subject: 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 --- webkit/glue/password_form.h | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) (limited to 'webkit/glue/password_form.h') diff --git a/webkit/glue/password_form.h b/webkit/glue/password_form.h index df41be8..b07576d 100644 --- a/webkit/glue/password_form.h +++ b/webkit/glue/password_form.h @@ -75,35 +75,35 @@ struct PasswordForm { // possible. // // When parsing an HTML form, this must always be set. - std::wstring submit_element; + string16 submit_element; // The name of the username input element. Optional (improves scoring). // // When parsing an HTML form, this must always be set. - std::wstring username_element; + string16 username_element; // The username. Optional. // // When parsing an HTML form, this is typically empty unless the site // has implemented some form of autofill. - std::wstring username_value; + string16 username_value; // The name of the password input element, Optional (improves scoring). // // When parsing an HTML form, this must always be set. - std::wstring password_element; + string16 password_element; // The password. Required. // // When parsing an HTML form, this is typically empty. - std::wstring password_value; + string16 password_value; // If the form was a change password form, the name of the // 'old password' input element. Optional. - std::wstring old_password_element; + string16 old_password_element; // The old password. Optional. - std::wstring old_password_value; + string16 old_password_value; // Whether or not this login was saved under an HTTPS session with a valid // SSL cert. We will never match or autofill a PasswordForm where @@ -143,7 +143,7 @@ struct PasswordForm { }; // Map username to PasswordForm* for convenience. See password_form_manager.h. -typedef std::map PasswordFormMap; +typedef std::map PasswordFormMap; } // namespace webkit_glue -- cgit v1.1