aboutsummaryrefslogtreecommitdiffstats
path: root/embed/ephy-embed-single.c
diff options
context:
space:
mode:
authorXan Lopez <xan@igalia.com>2013-02-13 22:09:05 +0800
committerXan Lopez <xan@igalia.com>2013-02-13 22:09:05 +0800
commit05b55f9385cd803b7d7a41876722c7a899eee6f0 (patch)
tree32facd94e98b1579b99a2488a01572eb7efd7e63 /embed/ephy-embed-single.c
parentd261d88d925ba7f15952cf4696bea5989faf50d2 (diff)
downloadgsoc2013-epiphany-05b55f9385cd803b7d7a41876722c7a899eee6f0.tar
gsoc2013-epiphany-05b55f9385cd803b7d7a41876722c7a899eee6f0.tar.gz
gsoc2013-epiphany-05b55f9385cd803b7d7a41876722c7a899eee6f0.tar.bz2
gsoc2013-epiphany-05b55f9385cd803b7d7a41876722c7a899eee6f0.tar.lz
gsoc2013-epiphany-05b55f9385cd803b7d7a41876722c7a899eee6f0.tar.xz
gsoc2013-epiphany-05b55f9385cd803b7d7a41876722c7a899eee6f0.tar.zst
gsoc2013-epiphany-05b55f9385cd803b7d7a41876722c7a899eee6f0.zip
ephy-embed-single: remove ::handle-content signal
It was meant for extensions, which we don't have anymore.
Diffstat (limited to 'embed/ephy-embed-single.c')
-rw-r--r--embed/ephy-embed-single.c24
1 files changed, 0 insertions, 24 deletions
diff --git a/embed/ephy-embed-single.c b/embed/ephy-embed-single.c
index 5f794345b..04ed1c236 100644
--- a/embed/ephy-embed-single.c
+++ b/embed/ephy-embed-single.c
@@ -251,30 +251,6 @@ ephy_embed_single_class_init (EphyEmbedSingleClass *klass)
GTK_TYPE_WIDGET,
EPHY_TYPE_WEB_VIEW_CHROME);
- /**
- * EphyEmbedSingle::handle_content:
- * @single:
- * @mime_type: the MIME type of the content
- * @address: the URL to the content
- *
- * The ::handle_content signal is emitted when encountering content of a mime
- * type Epiphany is unable to handle itself.
- *
- * If a connected callback returns %TRUE, the signal will stop propagating. For
- * example, this could be used by a download manager to prevent other
- * ::handle_content listeners from being called.
- **/
- g_signal_new ("handle_content",
- EPHY_TYPE_EMBED_SINGLE,
- G_SIGNAL_RUN_LAST,
- G_STRUCT_OFFSET (EphyEmbedSingleClass, handle_content),
- g_signal_accumulator_true_handled, NULL,
- g_cclosure_marshal_generic,
- G_TYPE_BOOLEAN,
- 2,
- G_TYPE_STRING,
- G_TYPE_STRING);
-
g_type_class_add_private (object_class, sizeof (EphyEmbedSinglePrivate));
}