diff options
author | Xan Lopez <xan@igalia.com> | 2012-12-19 20:28:07 +0800 |
---|---|---|
committer | Xan Lopez <xan@igalia.com> | 2012-12-19 20:32:49 +0800 |
commit | 6e16272c9bbe3f91ceb0d5656a6f913a59a0d29a (patch) | |
tree | 73afa40243f79cbd9b266febe6beadc9a3911706 /lib/ephy-profile-migrator.c | |
parent | b25c7f4f929ceca2724bce7dd7fd60e0146842f3 (diff) | |
download | gsoc2013-epiphany-6e16272c9bbe3f91ceb0d5656a6f913a59a0d29a.tar gsoc2013-epiphany-6e16272c9bbe3f91ceb0d5656a6f913a59a0d29a.tar.gz gsoc2013-epiphany-6e16272c9bbe3f91ceb0d5656a6f913a59a0d29a.tar.bz2 gsoc2013-epiphany-6e16272c9bbe3f91ceb0d5656a6f913a59a0d29a.tar.lz gsoc2013-epiphany-6e16272c9bbe3f91ceb0d5656a6f913a59a0d29a.tar.xz gsoc2013-epiphany-6e16272c9bbe3f91ceb0d5656a6f913a59a0d29a.tar.zst gsoc2013-epiphany-6e16272c9bbe3f91ceb0d5656a6f913a59a0d29a.zip |
Use new libsoup APIs
Drops dependency on libsoup-gnome, we now depend on libsoup 2.41.3
Diffstat (limited to 'lib/ephy-profile-migrator.c')
-rw-r--r-- | lib/ephy-profile-migrator.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/lib/ephy-profile-migrator.c b/lib/ephy-profile-migrator.c index e757cbd80..afa87c970 100644 --- a/lib/ephy-profile-migrator.c +++ b/lib/ephy-profile-migrator.c @@ -47,7 +47,6 @@ #include <glib/gi18n.h> #include <glib/gstdio.h> #include <gnome-keyring.h> -#include <libsoup/soup-gnome.h> #include <sys/stat.h> #include <sys/types.h> @@ -105,7 +104,7 @@ migrate_cookies (void) SoupCookieJar *txt, *sqlite; txt = soup_cookie_jar_text_new (src_txt, TRUE); - sqlite = soup_cookie_jar_sqlite_new (dest, FALSE); + sqlite = soup_cookie_jar_db_new (dest, FALSE); cookies = soup_cookie_jar_all_cookies (txt); for (p = cookies; p; p = p->next) { |