Home
last modified time | relevance | path

Searched refs:GetAutofillTable (Results 1 – 9 of 9) sorted by relevance

/external/chromium/chrome/browser/webdata/
Dautofill_table_unittest.cc140 EXPECT_TRUE(db.GetAutofillTable()->AddFormFieldValue( in TEST_F()
150 EXPECT_TRUE(db.GetAutofillTable()->AddFormFieldValue( in TEST_F()
160 EXPECT_TRUE(db.GetAutofillTable()->AddFormFieldValue( in TEST_F()
170 EXPECT_TRUE(db.GetAutofillTable()->AddFormFieldValue( in TEST_F()
185 EXPECT_TRUE(db.GetAutofillTable()->GetIDAndCountOfFormElement( in TEST_F()
198 EXPECT_TRUE(db.GetAutofillTable()->GetIDAndCountOfFormElement( in TEST_F()
208 EXPECT_TRUE(db.GetAutofillTable()->GetIDAndCountOfFormElement( in TEST_F()
222 EXPECT_TRUE(db.GetAutofillTable()->GetFormValuesForElementName( in TEST_F()
233 EXPECT_TRUE(db.GetAutofillTable()->GetFormValuesForElementName( in TEST_F()
242 EXPECT_TRUE(db.GetAutofillTable()->GetFormValuesForElementName( in TEST_F()
[all …]
Dweb_data_service.cc929 if (!db_->GetAutofillTable()->AddFormFieldValues(form_fields, &changes)) { in AddFormElementsImpl()
954 db_->GetAutofillTable()->GetFormValuesForElementName( in GetFormValuesForElementNameImpl()
967 if (db_->GetAutofillTable()->RemoveFormElementsAddedBetween( in RemoveFormElementsAddedBetweenImpl()
994 if (db_->GetAutofillTable()->RemoveFormElement(name, value)) { in RemoveFormValueForElementNameImpl()
1017 if (!db_->GetAutofillTable()->AddAutofillProfile(profile)) { in AddAutofillProfileImpl()
1044 if (!db_->GetAutofillTable()->GetAutofillProfile(profile.guid(), in UpdateAutofillProfileImpl()
1051 if (!db_->GetAutofillTable()->UpdateAutofillProfileMulti(profile)) { in UpdateAutofillProfileImpl()
1075 if (!db_->GetAutofillTable()->GetAutofillProfile(guid, &profile)) { in RemoveAutofillProfileImpl()
1081 if (!db_->GetAutofillTable()->RemoveAutofillProfile(guid)) { in RemoveAutofillProfileImpl()
1101 db_->GetAutofillTable()->GetAutofillProfiles(&profiles); in GetAutofillProfilesImpl()
[all …]
Dweb_database.h36 virtual AutofillTable* GetAutofillTable();
Dweb_database.cc57 AutofillTable* WebDatabase::GetAutofillTable() { in GetAutofillTable() function in WebDatabase
/external/chromium/chrome/browser/sync/glue/
Dautofill_change_processor.cc111 if (!web_database_->GetAutofillTable()->GetAutofillTimestamps( in ObserveAutofillEntriesChanged()
148 if (!web_database_->GetAutofillTable()->GetAutofillTimestamps( in ObserveAutofillEntriesChanged()
293 if (!web_database_->GetAutofillTable()->UpdateAutofillEntries(new_entries)) { in CommitChangesFromSyncModel()
306 if (!web_database_->GetAutofillTable()->RemoveFormElement( in ApplySyncAutofillEntryDelete()
353 if (!web_database_->GetAutofillTable()->AddAutofillProfile(*p.get())) { in ApplySyncAutofillProfileChange()
370 if (!web_database_->GetAutofillTable()->GetAutofillProfile( in ApplySyncAutofillProfileChange()
379 if (!web_database_->GetAutofillTable()->UpdateAutofillProfile( in ApplySyncAutofillProfileChange()
400 if (!web_database_->GetAutofillTable()->RemoveAutofillProfile(*guid)) { in ApplySyncAutofillProfileDelete()
Dautofill_profile_change_processor.cc182 if (!web_database_->GetAutofillTable()->RemoveAutofillProfile( in CommitChangesFromSyncModel()
224 if (!web_database_->GetAutofillTable()->AddAutofillProfile(p)) { in ApplyAutofillProfileChange()
236 if (!web_database_->GetAutofillTable()->GetAutofillProfile( in ApplyAutofillProfileChange()
247 if (!web_database_->GetAutofillTable()->UpdateAutofillProfile( in ApplyAutofillProfileChange()
Dautofill_model_associator.cc124 if (!web_database_->GetAutofillTable()->GetAllAutofillEntries(entries)) in LoadAutofillData()
129 if (!web_database_->GetAutofillTable()->GetAutofillProfiles(profiles)) in LoadAutofillData()
209 !web_database_->GetAutofillTable()->UpdateAutofillEntries( in SaveChangesToWebData()
217 if (!web_database_->GetAutofillTable()->AddAutofillProfile( in SaveChangesToWebData()
225 if (!web_database_->GetAutofillTable()->UpdateAutofillProfile( in SaveChangesToWebData()
Dautofill_profile_model_associator.cc132 if (!web_database_->GetAutofillTable()->GetAutofillProfiles(profiles)) in LoadAutofillData()
429 if (!web_database_->GetAutofillTable()->AddAutofillProfile( in SaveChangesToWebData()
437 if (!web_database_->GetAutofillTable()->UpdateAutofillProfile( in SaveChangesToWebData()
445 if (!web_database_->GetAutofillTable()->RemoveAutofillProfile( in SaveChangesToWebData()
/external/chromium/chrome/browser/sync/
Dprofile_sync_service_autofill_unittest.cc122 virtual AutofillTable* GetAutofillTable() { in GetAutofillTable() function in WebDatabaseFake