Home
last modified time | relevance | path

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

/external/chromium/chrome/browser/webdata/
Dautofill_change.cc10 AutofillChange::AutofillChange(Type type, const AutofillKey& key) in AutofillChange() function in AutofillChange
14 AutofillChange::~AutofillChange() { in ~AutofillChange()
Dautofill_change.h39 class AutofillChange : public GenericAutofillChange<AutofillKey> {
41 AutofillChange(Type type, const AutofillKey& key);
42 virtual ~AutofillChange();
43 bool operator==(const AutofillChange& change) const {
Dautofill_table.h15 class AutofillChange; variable
123 std::vector<AutofillChange>* changes);
129 std::vector<AutofillChange>* changes);
147 std::vector<AutofillChange>* changes);
303 std::vector<AutofillChange>* changes,
306 std::vector<AutofillChange>* changes,
Dweb_data_service_unittest.cc47 typedef std::vector<AutofillChange> AutofillChangeList;
155 const AutofillChange expected_changes[] = { in TEST_F()
156 AutofillChange(AutofillChange::ADD, AutofillKey(name1_, value1_)), in TEST_F()
157 AutofillChange(AutofillChange::ADD, AutofillKey(name2_, value2_)) in TEST_F()
205 const AutofillChange expected_changes[] = { in TEST_F()
206 AutofillChange(AutofillChange::REMOVE, AutofillKey(name1_, value1_)) in TEST_F()
237 const AutofillChange expected_changes[] = { in TEST_F()
238 AutofillChange(AutofillChange::REMOVE, AutofillKey(name1_, value1_)), in TEST_F()
239 AutofillChange(AutofillChange::REMOVE, AutofillKey(name2_, value2_)) in TEST_F()
Dautofill_table_unittest.cc35 std::ostream& operator<<(std::ostream& os, const AutofillChange& change) { in operator <<()
37 case AutofillChange::ADD: { in operator <<()
41 case AutofillChange::UPDATE: { in operator <<()
45 case AutofillChange::REMOVE: { in operator <<()
89 typedef std::vector<AutofillChange> AutofillChangeList;
256 const AutofillChange expected_changes[] = { in TEST_F()
257 AutofillChange(AutofillChange::REMOVE, in TEST_F()
260 AutofillChange(AutofillChange::REMOVE, in TEST_F()
263 AutofillChange(AutofillChange::REMOVE, in TEST_F()
266 AutofillChange(AutofillChange::REMOVE, in TEST_F()
[all …]
Dautofill_table.cc402 std::vector<AutofillChange>* changes) { in AddFormFieldValues()
407 std::vector<AutofillChange>* changes) { in AddFormFieldValue()
463 std::vector<AutofillChange>* changes) { in RemoveFormElementsAddedBetween()
503 AutofillChange::Type change_type = in RemoveFormElementsAddedBetween()
504 was_removed ? AutofillChange::REMOVE : AutofillChange::UPDATE; in RemoveFormElementsAddedBetween()
505 changes->push_back(AutofillChange(change_type, in RemoveFormElementsAddedBetween()
662 std::vector<AutofillChange>* changes, in AddFormFieldValuesTime()
845 std::vector<AutofillChange>* changes, in AddFormFieldValueTime()
862 AutofillChange::Type change_type = in AddFormFieldValueTime()
863 count == 0 ? AutofillChange::ADD : AutofillChange::UPDATE; in AddFormFieldValueTime()
[all …]
Dweb_data_service.h30 class AutofillChange; variable
89 typedef std::vector<AutofillChange> AutofillChangeList;
Dweb_data_service.cc996 changes.push_back(AutofillChange(AutofillChange::REMOVE, in RemoveFormValueForElementNameImpl()
/external/chromium/chrome/browser/sync/
Dprofile_sync_service_autofill_unittest.cc879 changes.push_back(AutofillChange(AutofillChange::ADD, added_entry.key())); in TEST_F()
941 changes.push_back(AutofillChange(AutofillChange::UPDATE, in TEST_F()
971 changes.push_back(AutofillChange(AutofillChange::REMOVE, in TEST_F()
1036 changes.push_back(AutofillChange(AutofillChange::ADD, in TEST_F()
/external/chromium/chrome/browser/sync/glue/
Dautofill_change_processor.cc97 case AutofillChange::ADD: in ObserveAutofillEntriesChanged()
128 case AutofillChange::UPDATE: in ObserveAutofillEntriesChanged()
161 case AutofillChange::REMOVE: { in ObserveAutofillEntriesChanged()