Searched refs:PasswordStoreChange (Results 1 – 7 of 7) sorted by relevance
/external/chromium/chrome/browser/password_manager/ |
D | password_store_change.h | 13 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;
|
D | password_store_x.cc | 34 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()
|
D | password_store_default.cc | 130 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()
|
D | password_store_default_unittest.cc | 457 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()
|
D | password_store_x_unittest.cc | 537 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()
|
D | password_store_mac.cc | 771 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/ |
D | password_change_processor.cc | 73 case PasswordStoreChange::ADD: { in Observe() 86 case PasswordStoreChange::UPDATE: { in Observe() 104 case PasswordStoreChange::REMOVE: { in Observe()
|