Searched refs:AutofillChange (Results 1 – 10 of 10) sorted by relevance
/external/chromium/chrome/browser/webdata/ |
D | autofill_change.cc | 10 AutofillChange::AutofillChange(Type type, const AutofillKey& key) in AutofillChange() function in AutofillChange 14 AutofillChange::~AutofillChange() { in ~AutofillChange()
|
D | autofill_change.h | 39 class AutofillChange : public GenericAutofillChange<AutofillKey> { 41 AutofillChange(Type type, const AutofillKey& key); 42 virtual ~AutofillChange(); 43 bool operator==(const AutofillChange& change) const {
|
D | autofill_table.h | 15 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,
|
D | web_data_service_unittest.cc | 47 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()
|
D | autofill_table_unittest.cc | 35 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 …]
|
D | autofill_table.cc | 402 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 …]
|
D | web_data_service.h | 30 class AutofillChange; variable 89 typedef std::vector<AutofillChange> AutofillChangeList;
|
D | web_data_service.cc | 996 changes.push_back(AutofillChange(AutofillChange::REMOVE, in RemoveFormValueForElementNameImpl()
|
/external/chromium/chrome/browser/sync/ |
D | profile_sync_service_autofill_unittest.cc | 879 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/ |
D | autofill_change_processor.cc | 97 case AutofillChange::ADD: in ObserveAutofillEntriesChanged() 128 case AutofillChange::UPDATE: in ObserveAutofillEntriesChanged() 161 case AutofillChange::REMOVE: { in ObserveAutofillEntriesChanged()
|