Home | History | Annotate | Download | only in integration

Lines Matching refs:wds

85   scoped_refptr<AutofillWebDataService> wds =
91 RunOnDBThreadAndBlock(Bind(add_observer_func, wds, &mock_observer));
93 wds->RemoveFormValueForElementName(key.name(), key.value());
99 RunOnDBThreadAndBlock(Bind(remove_observer_func, wds, &mock_observer));
102 void GetAllAutofillEntriesOnDBThread(AutofillWebDataService* wds,
106 wds->GetDatabase())->GetAllAutofillEntries(entries);
109 std::vector<AutofillEntry> GetAllAutofillEntries(AutofillWebDataService* wds) {
113 Unretained(wds),
194 scoped_refptr<AutofillWebDataService> wds = GetWebDataService(profile);
199 RunOnDBThreadAndBlock(Bind(add_observer_func, wds, &mock_observer));
201 wds->AddFormFields(form_fields);
208 RunOnDBThreadAndBlock(Bind(remove_observer_func, wds, &mock_observer));
226 scoped_refptr<AutofillWebDataService> wds = GetWebDataService(profile);
227 std::vector<AutofillEntry> all_entries = GetAllAutofillEntries(wds.get());