Searched refs:preferred_match (Results 1 – 10 of 10) sorted by relevance
/external/chromium_org/components/autofill/core/common/ |
D | password_form_fill_data_unittest.cc | 32 PasswordForm preferred_match; in TEST() local 33 preferred_match.origin = GURL("https://foo.com/"); in TEST() 34 preferred_match.action = GURL("https://foo.com/login"); in TEST() 35 preferred_match.username_element = ASCIIToUTF16("username"); in TEST() 36 preferred_match.username_value = ASCIIToUTF16("test@gmail.com"); in TEST() 37 preferred_match.password_element = ASCIIToUTF16("password"); in TEST() 38 preferred_match.password_value = ASCIIToUTF16("test"); in TEST() 39 preferred_match.submit_element = ASCIIToUTF16(""); in TEST() 40 preferred_match.signon_realm = "https://foo.com/"; in TEST() 41 preferred_match.ssl_valid = true; in TEST() [all …]
|
D | password_form_fill_data.cc | 35 const PasswordForm* const preferred_match, in InitPasswordFormFillData() argument 44 username_field.value = preferred_match->username_value; in InitPasswordFormFillData() 47 password_field.value = preferred_match->password_value; in InitPasswordFormFillData() 57 result->preferred_realm = preferred_match->original_signon_realm; in InitPasswordFormFillData() 62 if (iter->second != preferred_match) { in InitPasswordFormFillData()
|
D | password_form_fill_data.h | 80 const PasswordForm* const preferred_match,
|
/external/chromium/webkit/glue/ |
D | password_form_dom_manager.cc | 36 const PasswordForm* const preferred_match, in InitFillData() argument 39 DCHECK(preferred_match); in InitFillData() 51 preferred_match->username_value, in InitFillData() 58 preferred_match->password_value, in InitFillData() 67 if (iter->second != preferred_match) in InitFillData()
|
D | password_form_dom_manager.h | 54 const PasswordForm* const preferred_match,
|
/external/chromium/chrome/browser/password_manager/ |
D | password_manager.cc | 217 const PasswordForm* const preferred_match, in Autofill() argument 219 DCHECK(preferred_match); in Autofill() 227 preferred_match, in Autofill() 236 UTF16ToWideHack(preferred_match->username_value), in Autofill() 237 UTF16ToWideHack(preferred_match->password_value)); in Autofill()
|
D | password_manager.h | 41 const webkit_glue::PasswordForm* const preferred_match,
|
/external/chromium_org/chrome/browser/password_manager/ |
D | password_manager.cc | 419 const PasswordForm& preferred_match, in Autofill() argument 429 &preferred_match, in Autofill() 440 OnAutofillDataAvailable(preferred_match.username_value, in Autofill() 441 preferred_match.password_value)); in Autofill()
|
D | password_manager.h | 66 const autofill::PasswordForm& preferred_match,
|
D | password_form_manager_unittest.cc | 52 const autofill::PasswordForm& preferred_match, in Autofill() argument
|