Home
last modified time | relevance | path

Searched refs:AutofillChange (Results 1 – 11 of 11) sorted by relevance

/external/chromium_org/components/autofill/core/browser/webdata/
Dautofill_change.h42 class AutofillChange : public GenericAutofillChange<AutofillKey> {
44 AutofillChange(Type type, const AutofillKey& key);
45 virtual ~AutofillChange();
46 bool operator==(const AutofillChange& change) const {
51 typedef std::vector<AutofillChange> AutofillChangeList;
Dautofill_change.cc13 AutofillChange::AutofillChange(Type type, const AutofillKey& key) in AutofillChange() function in autofill::AutofillChange
17 AutofillChange::~AutofillChange() { in ~AutofillChange()
Dautofill_table.h24 class AutofillChange; variable
146 std::vector<AutofillChange>* changes);
152 std::vector<AutofillChange>* changes);
175 std::vector<AutofillChange>* changes);
179 bool RemoveExpiredFormElements(std::vector<AutofillChange>* changes);
333 std::vector<AutofillChange>* changes,
336 std::vector<AutofillChange>* changes,
Dweb_data_service_unittest.cc204 const AutofillChange expected_changes[] = { in TEST_F()
205 AutofillChange(AutofillChange::ADD, AutofillKey(name1_, value1_)), in TEST_F()
206 AutofillChange(AutofillChange::ADD, AutofillKey(name2_, value2_)) in TEST_F()
250 const AutofillChange expected_changes[] = { in TEST_F()
251 AutofillChange(AutofillChange::REMOVE, AutofillKey(name1_, value1_)) in TEST_F()
279 const AutofillChange expected_changes[] = { in TEST_F()
280 AutofillChange(AutofillChange::REMOVE, AutofillKey(name1_, value1_)), in TEST_F()
281 AutofillChange(AutofillChange::REMOVE, AutofillKey(name2_, value2_)) in TEST_F()
Dautofill_table_unittest.cc40 std::ostream& operator<<(std::ostream& os, const AutofillChange& change) { in operator <<()
42 case AutofillChange::ADD: { in operator <<()
46 case AutofillChange::UPDATE: { in operator <<()
50 case AutofillChange::REMOVE: { in operator <<()
224 const AutofillChange kExpectedChanges[] = { in TEST_F()
225 AutofillChange(AutofillChange::REMOVE, in TEST_F()
228 AutofillChange(AutofillChange::REMOVE, in TEST_F()
231 AutofillChange(AutofillChange::REMOVE, in TEST_F()
234 AutofillChange(AutofillChange::REMOVE, in TEST_F()
288 EXPECT_EQ(AutofillChange(AutofillChange::UPDATE, in TEST_F()
[all …]
Dautofill_table.cc529 std::vector<AutofillChange>* changes) { in AddFormFieldValues()
534 std::vector<AutofillChange>* changes) { in AddFormFieldValue()
590 std::vector<AutofillChange>* changes) { in RemoveFormElementsAddedBetween()
606 std::vector<AutofillChange> tentative_changes; in RemoveFormElementsAddedBetween()
617 AutofillChange::Type change_type; in RemoveFormElementsAddedBetween()
620 change_type = AutofillChange::REMOVE; in RemoveFormElementsAddedBetween()
622 change_type = AutofillChange::UPDATE; in RemoveFormElementsAddedBetween()
660 AutofillChange(change_type, AutofillKey(name, value))); in RemoveFormElementsAddedBetween()
695 std::vector<AutofillChange>* changes) { in RemoveExpiredFormElements()
704 std::vector<AutofillChange> tentative_changes; in RemoveExpiredFormElements()
[all …]
Dautofill_webdata_service.h29 class AutofillChange; variable
Dautofill_webdata_backend_impl.h29 class AutofillChange; variable
Dautofill_webdata_backend_impl.cc153 AutofillChange(AutofillChange::REMOVE, AutofillKey(name, value))); in RemoveFormValueForElementName()
/external/chromium_org/chrome/browser/webdata/
Dautocomplete_syncable_service.cc20 using autofill::AutofillChange;
388 case AutofillChange::ADD: in ActOnChanges()
389 case AutofillChange::UPDATE: { in ActOnChanges()
397 (change->type() == AutofillChange::ADD) ? in ActOnChanges()
406 case AutofillChange::REMOVE: { in ActOnChanges()
/external/chromium_org/chrome/browser/sync/
Dprofile_sync_service_autofill_unittest.cc68 using autofill::AutofillChange;
1214 changes.push_back(AutofillChange(AutofillChange::ADD, added_entry.key())); in TEST_F()
1271 changes.push_back(AutofillChange(AutofillChange::UPDATE, in TEST_F()
1297 changes.push_back(AutofillChange(AutofillChange::REMOVE, in TEST_F()