|
Molybden
|
The credit card store. More...
#include <credit_cards.hpp>
Public Member Functions | |
| virtual std::vector< CreditCard > | list ()=0 |
| Returns all saved credit cards in this store. | |
| virtual void | remove (const CreditCard &credit_card)=0 |
| Removes the credit card from the store. | |
| virtual void | clear ()=0 |
| Clears all records in the store. | |
| virtual std::shared_ptr< Profile > | profile ()=0 |
| The profile of this credit card store. | |
The credit card store.
|
pure virtual |
Returns all saved credit cards in this store.
Credit card records are saved to the store via the BrowserDelegate::OnSaveCreditCard method.
|
pure virtual |
Removes the credit card from the store.
Removed credit cards are not displayed in the autofill suggestion pop-up.
| credit_card | the credit card to remove. |