Home
last modified time | relevance | path

Searched refs:AutofillChange (Results 1 – 21 of 21) 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
144 std::vector<AutofillChange>* changes);
150 std::vector<AutofillChange>* changes);
171 std::vector<AutofillChange>* changes);
177 bool RemoveExpiredFormElements(std::vector<AutofillChange>* changes);
356 std::vector<AutofillChange>* changes,
359 std::vector<AutofillChange>* changes,
Dweb_data_service_unittest.cc214 const AutofillChange expected_changes[] = { in TEST_F()
215 AutofillChange(AutofillChange::ADD, AutofillKey(name1_, value1_)), in TEST_F()
216 AutofillChange(AutofillChange::ADD, AutofillKey(name2_, value2_)) in TEST_F()
260 const AutofillChange expected_changes[] = { in TEST_F()
261 AutofillChange(AutofillChange::REMOVE, AutofillKey(name1_, value1_)) in TEST_F()
289 const AutofillChange expected_changes[] = { in TEST_F()
290 AutofillChange(AutofillChange::REMOVE, AutofillKey(name1_, value1_)), in TEST_F()
291 AutofillChange(AutofillChange::REMOVE, AutofillKey(name2_, value2_)) in TEST_F()
Dautofill_table_unittest.cc39 std::ostream& operator<<(std::ostream& os, const AutofillChange& change) { in operator <<()
41 case AutofillChange::ADD: { in operator <<()
45 case AutofillChange::UPDATE: { in operator <<()
49 case AutofillChange::REMOVE: { in operator <<()
232 const AutofillChange kExpectedChanges[] = { in TEST_F()
233 AutofillChange(AutofillChange::REMOVE, in TEST_F()
236 AutofillChange(AutofillChange::REMOVE, in TEST_F()
239 AutofillChange(AutofillChange::REMOVE, in TEST_F()
242 AutofillChange(AutofillChange::REMOVE, in TEST_F()
308 EXPECT_EQ(AutofillChange(AutofillChange::UPDATE, in TEST_F()
[all …]
Dautofill_table.cc432 std::vector<AutofillChange>* changes) { in AddFormFieldValues()
437 std::vector<AutofillChange>* changes) { in AddFormFieldValue()
494 std::vector<AutofillChange>* changes) { in RemoveFormElementsAddedBetween()
535 AutofillChange::Type change_type = in RemoveFormElementsAddedBetween()
536 should_remove ? AutofillChange::REMOVE : AutofillChange::UPDATE; in RemoveFormElementsAddedBetween()
537 changes->push_back(AutofillChange(change_type, in RemoveFormElementsAddedBetween()
545 std::vector<AutofillChange>* changes) { in RemoveExpiredFormElements()
609 changes->push_back(AutofillChange( in RemoveExpiredFormElements()
610 AutofillChange::REMOVE, AutofillKey(it->b, it->c))); in RemoveExpiredFormElements()
755 std::vector<AutofillChange>* changes, in AddFormFieldValuesTime()
[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/chrome/browser/webdata/
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_change.cc10 AutofillChange::AutofillChange(Type type, const AutofillKey& key) in AutofillChange() function in AutofillChange
14 AutofillChange::~AutofillChange() { in ~AutofillChange()
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_org/chrome/browser/webdata/
Dautocomplete_syncable_service.cc20 using autofill::AutofillChange;
430 case AutofillChange::ADD: in ActOnChanges()
431 case AutofillChange::UPDATE: { in ActOnChanges()
443 (change->type() == AutofillChange::ADD) ? in ActOnChanges()
451 case AutofillChange::REMOVE: { in ActOnChanges()
/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()
/external/chromium_org/chrome/browser/sync/
Dprofile_sync_service_autofill_unittest.cc65 using autofill::AutofillChange;
1243 changes.push_back(AutofillChange(AutofillChange::ADD, added_entry.key())); in TEST_F()
1299 changes.push_back(AutofillChange(AutofillChange::UPDATE, in TEST_F()
1325 changes.push_back(AutofillChange(AutofillChange::REMOVE, in TEST_F()