HomeSort by relevance Sort by last modified time
    Searched refs:wait_for_username (Results 1 - 16 of 16) sorted by null

  /external/chromium/webkit/glue/
password_form_dom_manager.h 23 // wait_for_username tells us whether we need to wait for the user to enter
33 bool wait_for_username; member in struct:webkit_glue::PasswordFormFillData
password_form_dom_manager.cc 18 PasswordFormFillData::PasswordFormFillData() : wait_for_username(false) {
62 result->wait_for_username = wait_for_username_before_autofill;
  /external/chromium_org/components/autofill/core/common/
password_form_fill_data.h 63 bool wait_for_username; member in struct:autofill::PasswordFormFillData
password_form_fill_data.cc 26 PasswordFormFillData::PasswordFormFillData() : wait_for_username(false) {
55 result->wait_for_username = wait_for_username_before_autofill;
password_form_fill_data_unittest.cc 58 // |wait_for_username| should reflect the |wait_for_username_before_autofill|
60 EXPECT_TRUE(result.wait_for_username);
73 // |wait_for_username| should reflect the |wait_for_username_before_autofill|
75 EXPECT_FALSE(result2.wait_for_username);
154 EXPECT_TRUE(result.wait_for_username);
autofill_messages.h 94 IPC_STRUCT_TRAITS_MEMBER(wait_for_username)
  /external/chromium/chrome/browser/password_manager/
password_manager.h 42 bool wait_for_username) const;
password_manager.cc 218 bool wait_for_username) const {
228 wait_for_username,
password_form_manager.cc 298 bool wait_for_username = observed_form_.action.GetWithEmptyPath() != local
300 if (wait_for_username)
305 preferred_match_, wait_for_username);
  /external/chromium/chrome/common/
autofill_messages.h 40 IPC_STRUCT_TRAITS_MEMBER(wait_for_username)
  /external/chromium_org/chrome/browser/password_manager/
password_manager.h 55 bool wait_for_username) const;
password_manager.cc 372 bool wait_for_username) const {
382 wait_for_username,
password_form_manager.cc 350 bool wait_for_username = local
355 if (wait_for_username)
360 *preferred_match_, wait_for_username);
password_form_manager_unittest.cc 51 bool wait_for_username) const OVERRIDE {}
  /external/chromium_org/components/autofill/content/renderer/
password_autofill_agent.cc 238 // If wait_for_username is false, we should have filled when the text changed.
239 if (!fill_data.wait_for_username)
271 // If wait_for_username is true we will fill when the username loses focus.
272 if (iter->second.fill_data.wait_for_username)
447 // If wait_for_username is true, we don't want to initially fill the form
449 if (!form_data.wait_for_username)
626 DCHECK(!fill_data.wait_for_username);
  /external/chromium_org/chrome/renderer/autofill/
password_autofill_agent_browsertest.cc 387 // when |wait_for_username| is true.
390 fill_data_.wait_for_username = true;

Completed in 208 milliseconds