HomeSort by relevance Sort by last modified time
    Searched refs:RemoveLogin (Results 1 - 25 of 27) sorted by null

1 2

  /external/chromium_org/chrome/browser/sync/test/integration/
passwords_helper.h 40 void RemoveLogin(password_manager::PasswordStore* store,
two_client_passwords_sync_test.cc 23 using passwords_helper::RemoveLogin;
138 RemoveLogin(GetPasswordStore(1), form0);
139 RemoveLogin(GetVerifierPasswordStore(), form0);
passwords_helper.cc 106 void RemoveLogin(PasswordStore* store, const PasswordForm& form) {
109 store->RemoveLogin(form);
119 RemoveLogin(store, *it);
  /external/chromium_org/components/password_manager/core/browser/
mock_password_store.h 22 MOCK_METHOD1(RemoveLogin, void(const autofill::PasswordForm&));
password_store.h 42 void RemoveLogin(password_manager::PasswordStore* store,
139 virtual void RemoveLogin(const autofill::PasswordForm& form);
login_database.h 49 bool RemoveLogin(const autofill::PasswordForm& form);
password_store_default.cc 50 if (login_db_->RemoveLogin(form))
password_store_default_unittest.cc 176 store->RemoveLogin(*form);
password_form_manager.cc 175 password_store->RemoveLogin(*iter->second);
550 password_store->RemoveLogin(pending_credentials_);
583 password_store->RemoveLogin(pending_credentials_);
password_store.cc 101 void PasswordStore::RemoveLogin(const PasswordForm& form) {
login_database_unittest.cc 201 EXPECT_TRUE(db_.RemoveLogin(form));
251 EXPECT_TRUE(db_.RemoveLogin(form4));
813 EXPECT_TRUE(db_.RemoveLogin(incomplete_form));
    [all...]
login_database.cc 398 bool LoginDatabase::RemoveLogin(const PasswordForm& form) {
  /external/chromium_org/chrome/browser/ui/passwords/
password_manager_presenter.cc 93 store->RemoveLogin(*password_list_[index]);
108 store->RemoveLogin(*password_exception_list_[index]);
manage_passwords_bubble_model.cc 132 password_store->RemoveLogin(password_form);
manage_passwords_ui_controller.cc 166 password_store->RemoveLogin(*password_form_map_.begin()->second);
  /external/chromium_org/chrome/browser/password_manager/
native_backend_gnome_x.h 89 virtual bool RemoveLogin(const autofill::PasswordForm& form) OVERRIDE;
native_backend_kwallet_x.h 48 virtual bool RemoveLogin(const autofill::PasswordForm& form) OVERRIDE;
password_store_x.h 48 virtual bool RemoveLogin(const autofill::PasswordForm& form) = 0;
native_backend_gnome_x.cc 258 void RemoveLogin(const PasswordForm& form, const char* app_string);
263 // Use after AddLogin, RemoveLogin.
386 void GKRMethod::RemoveLogin(const PasswordForm& form, const char* app_string) {
388 // We find forms using the same fields as LoginDatabase::RemoveLogin().
571 if (RemoveLogin(*forms[0])) {
611 RemoveLogin(*forms[i]);
627 bool NativeBackendGnome::RemoveLogin(const PasswordForm& form) {
631 base::Bind(&GKRMethod::RemoveLogin,
762 // easier to build the list and use RemoveLogin() to delete them.
769 if (RemoveLogin(*forms[i]))
    [all...]
password_store_x_unittest.cc 69 virtual bool RemoveLogin(const PasswordForm& form) OVERRIDE { return false; }
119 virtual bool RemoveLogin(const PasswordForm& form) OVERRIDE {
343 store->RemoveLogin(*form);
password_store_x.cc 80 if (use_native_backend() && backend_->RemoveLogin(form)) {
native_backend_gnome_x_unittest.cc     [all...]
native_backend_kwallet_x_unittest.cc 733 base::Bind(base::IgnoreResult(&NativeBackendKWalletStub::RemoveLogin),
798 base::Bind(base::IgnoreResult(&NativeBackendKWalletStub::RemoveLogin),
    [all...]
password_store_mac.cc     [all...]
password_store_mac_unittest.cc     [all...]

Completed in 313 milliseconds

1 2