Home
last modified time | relevance | path

Searched refs:PasswordStoreChange (Results 1 – 7 of 7) sorted by relevance

/external/chromium/chrome/browser/password_manager/
Dpassword_store_change.h13 class PasswordStoreChange {
21 PasswordStoreChange(Type type, const webkit_glue::PasswordForm& form) in PasswordStoreChange() function
24 virtual ~PasswordStoreChange() {} in ~PasswordStoreChange()
29 bool operator==(const PasswordStoreChange& other) const {
52 typedef std::vector<PasswordStoreChange> PasswordStoreChangeList;
Dpassword_store_x.cc34 changes.push_back(PasswordStoreChange(PasswordStoreChange::ADD, form)); in AddLoginImpl()
49 changes.push_back(PasswordStoreChange(PasswordStoreChange::UPDATE, form)); in UpdateLoginImpl()
64 changes.push_back(PasswordStoreChange(PasswordStoreChange::REMOVE, form)); in RemoveLoginImpl()
86 changes.push_back(PasswordStoreChange(PasswordStoreChange::REMOVE, in RemoveLoginsCreatedBetweenImpl()
Dpassword_store_default.cc130 changes.push_back(PasswordStoreChange(PasswordStoreChange::ADD, form)); in AddLoginImpl()
141 changes.push_back(PasswordStoreChange(PasswordStoreChange::UPDATE, form)); in UpdateLoginImpl()
152 changes.push_back(PasswordStoreChange(PasswordStoreChange::REMOVE, form)); in RemoveLoginImpl()
168 changes.push_back(PasswordStoreChange(PasswordStoreChange::REMOVE, in RemoveLoginsCreatedBetweenImpl()
Dpassword_store_default_unittest.cc457 const PasswordStoreChange expected_add_changes[] = { in TEST_F()
458 PasswordStoreChange(PasswordStoreChange::ADD, *form), in TEST_F()
481 const PasswordStoreChange expected_update_changes[] = { in TEST_F()
482 PasswordStoreChange(PasswordStoreChange::UPDATE, *form), in TEST_F()
500 const PasswordStoreChange expected_delete_changes[] = { in TEST_F()
501 PasswordStoreChange(PasswordStoreChange::REMOVE, *form), in TEST_F()
Dpassword_store_x_unittest.cc537 const PasswordStoreChange expected_add_changes[] = { in TEST_P()
538 PasswordStoreChange(PasswordStoreChange::ADD, *form), in TEST_P()
561 const PasswordStoreChange expected_update_changes[] = { in TEST_P()
562 PasswordStoreChange(PasswordStoreChange::UPDATE, *form), in TEST_P()
580 const PasswordStoreChange expected_delete_changes[] = { in TEST_P()
581 PasswordStoreChange(PasswordStoreChange::REMOVE, *form), in TEST_P()
Dpassword_store_mac.cc771 changes.push_back(PasswordStoreChange(PasswordStoreChange::ADD, form)); in AddLoginImpl()
799 changes.push_back(PasswordStoreChange(PasswordStoreChange::ADD, in UpdateLoginImpl()
803 changes.push_back(PasswordStoreChange(PasswordStoreChange::UPDATE, in UpdateLoginImpl()
837 changes.push_back(PasswordStoreChange(PasswordStoreChange::REMOVE, form)); in RemoveLoginImpl()
869 changes.push_back(PasswordStoreChange(PasswordStoreChange::REMOVE, in RemoveLoginsCreatedBetweenImpl()
/external/chromium/chrome/browser/sync/glue/
Dpassword_change_processor.cc73 case PasswordStoreChange::ADD: { in Observe()
86 case PasswordStoreChange::UPDATE: { in Observe()
104 case PasswordStoreChange::REMOVE: { in Observe()