diff options
author | Marco Pesenti Gritti <marco@it.gnome.org> | 2003-01-11 20:56:54 +0800 |
---|---|---|
committer | Marco Pesenti Gritti <mpeseng@src.gnome.org> | 2003-01-11 20:56:54 +0800 |
commit | 476dd3a483d5002b07859036b1b7dbb6f883e4f9 (patch) | |
tree | 1d25606e82e82faf3a06b85635b0b3502d6416c2 /embed/mozilla/mozilla-embed-persist.h | |
parent | aa24bfd629dfa18c35b98eedcbb06f6d1e64cec2 (diff) | |
download | gsoc2013-epiphany-476dd3a483d5002b07859036b1b7dbb6f883e4f9.tar gsoc2013-epiphany-476dd3a483d5002b07859036b1b7dbb6f883e4f9.tar.gz gsoc2013-epiphany-476dd3a483d5002b07859036b1b7dbb6f883e4f9.tar.bz2 gsoc2013-epiphany-476dd3a483d5002b07859036b1b7dbb6f883e4f9.tar.lz gsoc2013-epiphany-476dd3a483d5002b07859036b1b7dbb6f883e4f9.tar.xz gsoc2013-epiphany-476dd3a483d5002b07859036b1b7dbb6f883e4f9.tar.zst gsoc2013-epiphany-476dd3a483d5002b07859036b1b7dbb6f883e4f9.zip |
Implement a cancel api. Fix refcount to really destroy the WebPersist
2003-01-11 Marco Pesenti Gritti <marco@it.gnome.org>
* embed/ephy-embed-persist.c: (ephy_embed_persist_cancel):
* embed/ephy-embed-persist.h:
* embed/mozilla/ProgressListener.cpp:
* embed/mozilla/mozilla-embed-persist.cpp:
* embed/mozilla/mozilla-embed-persist.h:
Implement a cancel api. Fix refcount to really destroy
the WebPersist object when done.
Diffstat (limited to 'embed/mozilla/mozilla-embed-persist.h')
-rw-r--r-- | embed/mozilla/mozilla-embed-persist.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/embed/mozilla/mozilla-embed-persist.h b/embed/mozilla/mozilla-embed-persist.h index bcd073ca3..d65170eda 100644 --- a/embed/mozilla/mozilla-embed-persist.h +++ b/embed/mozilla/mozilla-embed-persist.h @@ -38,7 +38,7 @@ typedef struct MozillaEmbedPersistClass MozillaEmbedPersistClass; typedef struct MozillaEmbedPersist MozillaEmbedPersist; typedef struct MozillaEmbedPersistPrivate MozillaEmbedPersistPrivate; -struct MozillaEmbedPersist +struct MozillaEmbedPersist { EphyEmbedPersist parent; MozillaEmbedPersistPrivate *priv; @@ -51,6 +51,8 @@ struct MozillaEmbedPersistClass GType mozilla_embed_persist_get_type (void); +void mozilla_embed_persist_completed (MozillaEmbedPersist *persist); + G_END_DECLS #endif |