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

1 2

  /external/chromium/chrome/browser/ui/webui/
ntp_login_handler.cc 42 UpdateLogin();
46 UpdateLogin();
49 void NTPLoginHandler::UpdateLogin() {
53 web_ui_->CallJavascriptFunction("updateLogin", string_value);
ntp_login_handler.h 37 void UpdateLogin();
  /external/chromium/chrome/browser/password_manager/
native_backend_gnome_x.h 28 virtual bool UpdateLogin(const webkit_glue::PasswordForm& form);
login_database.h 38 bool UpdateLogin(const webkit_glue::PasswordForm& form, int* items_changed);
password_store_x.h 39 virtual bool UpdateLogin(const webkit_glue::PasswordForm& form) = 0;
native_backend_kwallet_x.h 32 virtual bool UpdateLogin(const webkit_glue::PasswordForm& form);
86 // LoginDatabase::UpdateLogin() when updating logins; otherwise, we check the
password_form_manager.h 160 void UpdateLogin();
password_form_manager.cc 195 UpdateLogin();
373 password_store->UpdateLogin(*iter->second);
378 void PasswordFormManager::UpdateLogin() {
421 password_store->UpdateLogin(pending_credentials_);
password_store.h 84 void UpdateLogin(const webkit_glue::PasswordForm& form);
password_store.cc 46 void PasswordStore::UpdateLogin(const PasswordForm& form) {
password_store_x_unittest.cc 96 virtual bool UpdateLogin(const PasswordForm& form) { return false; }
127 virtual bool UpdateLogin(const PasswordForm& form) {
573 store->UpdateLogin(*form);
password_store_default.cc 139 if (login_db_->UpdateLogin(form, NULL)) {
password_store_x.cc 47 if (use_native_backend() && backend_->UpdateLogin(form)) {
login_database.cc 196 bool LoginDatabase::UpdateLogin(const PasswordForm& form, int* items_changed) {
login_database_unittest.cc 149 EXPECT_TRUE(db->UpdateLogin(form6, &rows_changed));
password_manager_unittest.cc 56 MOCK_METHOD1(UpdateLogin, void(const PasswordForm&));
password_store_default_unittest.cc 493 store->UpdateLogin(*form);
native_backend_kwallet_x.cc 137 bool NativeBackendKWallet::UpdateLogin(const PasswordForm& form) {
native_backend_gnome_x.cc 679 bool NativeBackendGnome::UpdateLogin(const PasswordForm& form) {
680 // Based on LoginDatabase::UpdateLogin(), we search for forms to update by
    [all...]
password_store_mac.cc 782 if (!login_metadata_db_->UpdateLogin(form, &update_count))
    [all...]
  /external/chromium/chrome/browser/webdata/
logins_table.h 71 bool UpdateLogin(const webkit_glue::PasswordForm& form);
logins_table.cc 145 bool LoginsTable::UpdateLogin(const PasswordForm& form) {
logins_table_unittest.cc 155 EXPECT_TRUE(db.GetLoginsTable()->UpdateLogin(form6));
web_data_service.h 383 void UpdateLogin(const webkit_glue::PasswordForm& form);
web_data_service.cc 267 void WebDataService::UpdateLogin(const PasswordForm& form) {
847 if (db_->GetLoginsTable()->UpdateLogin(request->GetArgument()))
    [all...]

Completed in 288 milliseconds

1 2