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

  /external/chromium_org/components/password_manager/core/browser/
password_manager_client.h 64 // Called when a password is autofilled. |best_matches| contains the
69 const autofill::PasswordFormMap& best_matches) const {}
71 // Called when password autofill is blocked by the blacklist. |best_matches|
76 const autofill::PasswordFormMap& best_matches) const {}
password_manager.cc 509 const PasswordFormMap& best_matches) const {
514 for (autofill::PasswordFormMap::const_iterator it = best_matches.begin();
515 it != best_matches.end();
546 const PasswordFormMap& best_matches,
549 PossiblyInitializeUsernamesExperiment(best_matches);
555 for (autofill::PasswordFormMap::const_iterator it = best_matches.begin();
556 !authentication_required && it != best_matches.end();
569 best_matches,
589 client_->PasswordWasAutofilled(best_matches);
password_manager.h 72 const autofill::PasswordFormMap& best_matches,
password_form_manager.h 161 const autofill::PasswordFormMap& best_matches() const { function in class:password_manager::PasswordFormManager
225 // Helper for Save in the case that best_matches.size() == 0, meaning
235 // Helper for Save in the case that best_matches.size() > 0, meaning
password_form_manager_unittest.cc 98 const autofill::PasswordFormMap& best_matches,
101 best_matches_ = best_matches;
    [all...]
  /external/chromium_org/chrome/browser/password_manager/
chrome_password_manager_client.h 55 const autofill::PasswordFormMap& best_matches) const OVERRIDE;
57 const autofill::PasswordFormMap& best_matches) const OVERRIDE;
chrome_password_manager_client.cc 188 const autofill::PasswordFormMap& best_matches) const {
192 manage_passwords_ui_controller->OnPasswordAutofilled(best_matches);
196 const autofill::PasswordFormMap& best_matches) const {
200 controller->OnBlacklistBlockedAutofill(best_matches);
  /external/chromium_org/chrome/browser/ui/passwords/
manage_passwords_bubble_model.h 74 const autofill::ConstPasswordFormMap& best_matches() const { function in class:ManagePasswordsBubbleModel
manage_passwords_ui_controller.h 92 const autofill::ConstPasswordFormMap& best_matches() const { function in class:ManagePasswordsUIController
manage_passwords_ui_controller_unittest.cc 94 EXPECT_EQ(1u, controller()->best_matches().size());
95 ASSERT_EQ(1u, controller()->best_matches().count(kTestUsername));
99 controller()->best_matches().find(kTestUsername)->second);
243 EXPECT_EQ(1u, controller()->best_matches().size());
244 ASSERT_EQ(1u, controller()->best_matches().count(kTestUsername));
248 controller()->best_matches().find(kTestUsername)->second);
manage_passwords_ui_controller.cc 92 password_form_map_ = ConstifyMap(form_manager_->best_matches());
101 password_form_map_ = ConstifyMap(form_manager_->best_matches());
manage_passwords_bubble_model.cc 68 best_matches_ = controller->best_matches();
  /external/chromium_org/chrome/browser/ui/views/passwords/
manage_passwords_bubble_view.cc 405 if (!parent_->model()->best_matches().empty()) {
407 parent_->model()->best_matches().begin());
408 i != parent_->model()->best_matches().end();
413 i == parent_->model()->best_matches().begin()
823 if (model()->best_matches().empty()) {

Completed in 69 milliseconds