aboutsummaryrefslogtreecommitdiffstats
path: root/embed/webkit
diff options
context:
space:
mode:
authorCosimo Cecchi <cosimoc@src.gnome.org>2007-11-05 07:35:28 +0800
committerCosimo Cecchi <cosimoc@src.gnome.org>2007-11-05 07:35:28 +0800
commitcce4921f040c9756af1cbc573e1a7efcebe6a02a (patch)
tree04486e048111d8259f00253471e9b952d0850ee5 /embed/webkit
parent42ccd4ec827aed6f2145c2a3bf5613d7c521fa77 (diff)
downloadgsoc2013-epiphany-cce4921f040c9756af1cbc573e1a7efcebe6a02a.tar
gsoc2013-epiphany-cce4921f040c9756af1cbc573e1a7efcebe6a02a.tar.gz
gsoc2013-epiphany-cce4921f040c9756af1cbc573e1a7efcebe6a02a.tar.bz2
gsoc2013-epiphany-cce4921f040c9756af1cbc573e1a7efcebe6a02a.tar.lz
gsoc2013-epiphany-cce4921f040c9756af1cbc573e1a7efcebe6a02a.tar.xz
gsoc2013-epiphany-cce4921f040c9756af1cbc573e1a7efcebe6a02a.tar.zst
gsoc2013-epiphany-cce4921f040c9756af1cbc573e1a7efcebe6a02a.zip
Add remove_all_passwords method to EphyPasswordManager and implement it
in Mozilla and XulRunner backends. Bug #476411. svn path=/trunk/; revision=7623
Diffstat (limited to 'embed/webkit')
-rw-r--r--embed/webkit/webkit-embed-single.cpp6
1 files changed, 6 insertions, 0 deletions
diff --git a/embed/webkit/webkit-embed-single.cpp b/embed/webkit/webkit-embed-single.cpp
index 0946472d3..cb4174213 100644
--- a/embed/webkit/webkit-embed-single.cpp
+++ b/embed/webkit/webkit-embed-single.cpp
@@ -169,6 +169,11 @@ impl_remove_password (EphyPasswordManager *manager,
}
static void
+impl_remove_all_passwords (EphyPasswordManager *manager)
+{
+}
+
+static void
impl_add_password (EphyPasswordManager *manager,
EphyPasswordInfo *info)
{
@@ -328,6 +333,7 @@ ephy_password_manager_iface_init (EphyPasswordManagerIface *iface)
{
iface->add = impl_add_password;
iface->remove = impl_remove_password;
+ iface->remove = impl_remove_all_passwords;
iface->list = impl_list_passwords;
}