aboutsummaryrefslogtreecommitdiffstats
path: root/embed/ephy-embed-persist.c
diff options
context:
space:
mode:
authorChristian Persch <chpe@cvs.gnome.org>2004-01-14 19:39:31 +0800
committerChristian Persch <chpe@src.gnome.org>2004-01-14 19:39:31 +0800
commitbc1a4b904c934fdcc2ba6de52b4adf8fde725ff5 (patch)
tree0cb0296bed9a5a50e2eac8f401dcaa66149acc4a /embed/ephy-embed-persist.c
parentd5a332e6cac8d2d1a58b3441810999fead5e3f9e (diff)
downloadgsoc2013-epiphany-bc1a4b904c934fdcc2ba6de52b4adf8fde725ff5.tar
gsoc2013-epiphany-bc1a4b904c934fdcc2ba6de52b4adf8fde725ff5.tar.gz
gsoc2013-epiphany-bc1a4b904c934fdcc2ba6de52b4adf8fde725ff5.tar.bz2
gsoc2013-epiphany-bc1a4b904c934fdcc2ba6de52b4adf8fde725ff5.tar.lz
gsoc2013-epiphany-bc1a4b904c934fdcc2ba6de52b4adf8fde725ff5.tar.xz
gsoc2013-epiphany-bc1a4b904c934fdcc2ba6de52b4adf8fde725ff5.tar.zst
gsoc2013-epiphany-bc1a4b904c934fdcc2ba6de52b4adf8fde725ff5.zip
Get the page content into a string.
2004-01-14 Christian Persch <chpe@cvs.gnome.org> * embed/ephy-embed-persist.c: (ephy_embed_persist_to_string): * embed/ephy-embed-persist.h: * embed/mozilla/mozilla-embed-persist.cpp: Get the page content into a string.
Diffstat (limited to 'embed/ephy-embed-persist.c')
-rw-r--r--embed/ephy-embed-persist.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/embed/ephy-embed-persist.c b/embed/ephy-embed-persist.c
index 28cddbb2b..7197fa6be 100644
--- a/embed/ephy-embed-persist.c
+++ b/embed/ephy-embed-persist.c
@@ -435,3 +435,10 @@ ephy_embed_persist_save (EphyEmbedPersist *persist)
EphyEmbedPersistClass *klass = EPHY_EMBED_PERSIST_GET_CLASS (persist);
return klass->save (persist);
}
+char *
+ephy_embed_persist_to_string (EphyEmbedPersist *persist)
+{
+ EphyEmbedPersistClass *klass = EPHY_EMBED_PERSIST_GET_CLASS (persist);
+ return klass->to_string (persist);
+}
+