diff options
Diffstat (limited to 'embed/ephy-password-manager.c')
-rw-r--r-- | embed/ephy-password-manager.c | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/embed/ephy-password-manager.c b/embed/ephy-password-manager.c index c4fb56143..6f1b49520 100644 --- a/embed/ephy-password-manager.c +++ b/embed/ephy-password-manager.c @@ -187,6 +187,19 @@ ephy_password_manager_remove_password (EphyPasswordManager *manager, } /** + * ephy_password_manager_remove_all_passwords: + * @manager: the #EphyPasswordManager + * + * Removes all the password entries from the password database. + **/ +void +ephy_password_manager_remove_all_passwords (EphyPasswordManager *manager) +{ + EphyPasswordManagerIface *iface = EPHY_PASSWORD_MANAGER_GET_IFACE (manager); + iface->remove_all (manager); +} + +/** * ephy_password_manager_list_passwords: * @manager: the #EphyPasswordManager * |