Searched refs:AutofillChange (Results 1 – 11 of 11) sorted by relevance
/external/chromium_org/components/autofill/core/browser/webdata/ |
D | autofill_change.h | 42 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;
|
D | autofill_change.cc | 13 AutofillChange::AutofillChange(Type type, const AutofillKey& key) in AutofillChange() function in autofill::AutofillChange 17 AutofillChange::~AutofillChange() { in ~AutofillChange()
|
D | autofill_table.h | 24 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,
|
D | web_data_service_unittest.cc | 204 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()
|
D | autofill_table_unittest.cc | 40 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 …]
|
D | autofill_table.cc | 529 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 …]
|
D | autofill_webdata_service.h | 29 class AutofillChange; variable
|
D | autofill_webdata_backend_impl.h | 29 class AutofillChange; variable
|
D | autofill_webdata_backend_impl.cc | 153 AutofillChange(AutofillChange::REMOVE, AutofillKey(name, value))); in RemoveFormValueForElementName()
|
/external/chromium_org/chrome/browser/webdata/ |
D | autocomplete_syncable_service.cc | 20 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/ |
D | profile_sync_service_autofill_unittest.cc | 68 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()
|