Home | History | Annotate | Download | only in glue

Lines Matching defs:PasswordForm

17 // The PasswordForm struct encapsulates information about a login form,
21 // metdata using a PasswordForm struct, typically one that was created from
26 // PasswordForm entries against PasswordForms that were created from a parsed
32 // about a particular "saved password entry" to our PasswordForm
39 struct PasswordForm {
58 // fashion) whether or not a given PasswordForm result from the database is a
75 // of PasswordForm results from the database to make matches as tight as
110 // SSL cert. We will never match or autofill a PasswordForm where
111 // ssl_valid == true with a PasswordForm where ssl_valid == false. This means
118 // True if this PasswordForm represents the last username/password login the
138 PasswordForm();
139 PasswordForm(const WebKit::WebPasswordFormData& web_password_form);
140 ~PasswordForm();
143 // Map username to PasswordForm* for convenience. See password_form_manager.h.
144 typedef std::map<string16, PasswordForm*> PasswordFormMap;