diff options
author | Xan Lopez <xan@gnome.org> | 2010-05-24 18:51:29 +0800 |
---|---|---|
committer | Diego Escalante Urrelo <descalante@igalia.com> | 2010-08-31 04:32:57 +0800 |
commit | 0d6c92c7faca90c9f2844becf1a050c49ea7974c (patch) | |
tree | e03ca8315f09890c99a1bfe23805b8be6b7485c6 | |
parent | d2fa06c7251b69e20234ee41bc159ba1435c991d (diff) | |
download | gsoc2013-epiphany-0d6c92c7faca90c9f2844becf1a050c49ea7974c.tar gsoc2013-epiphany-0d6c92c7faca90c9f2844becf1a050c49ea7974c.tar.gz gsoc2013-epiphany-0d6c92c7faca90c9f2844becf1a050c49ea7974c.tar.bz2 gsoc2013-epiphany-0d6c92c7faca90c9f2844becf1a050c49ea7974c.tar.lz gsoc2013-epiphany-0d6c92c7faca90c9f2844becf1a050c49ea7974c.tar.xz gsoc2013-epiphany-0d6c92c7faca90c9f2844becf1a050c49ea7974c.tar.zst gsoc2013-epiphany-0d6c92c7faca90c9f2844becf1a050c49ea7974c.zip |
ephy-web-view: remove dom-content-loaded signal
Would duplicate the functionality of the WebKit DOM signals, if it
worked at all...
-rw-r--r-- | embed/ephy-web-view.c | 18 | ||||
-rw-r--r-- | embed/ephy-web-view.h | 2 |
2 files changed, 0 insertions, 20 deletions
diff --git a/embed/ephy-web-view.c b/embed/ephy-web-view.c index d8604cb33..b240d1993 100644 --- a/embed/ephy-web-view.c +++ b/embed/ephy-web-view.c @@ -1623,24 +1623,6 @@ ephy_web_view_class_init (EphyWebViewClass *klass) 0); /** - * EphyWebView::dom-content-loaded: - * @view: the #EphyWebView that received the signal - * - * The ::dom-content-loaded signal is emitted when - * the document has been loaded (excluding images and other loads initiated by this document). - * That's true also for frameset and all the frames within it. - **/ - g_signal_new ("dom_content_loaded", - EPHY_TYPE_WEB_VIEW, - G_SIGNAL_RUN_FIRST, - G_STRUCT_OFFSET (EphyWebViewClass, dom_content_loaded), - NULL, NULL, - g_cclosure_marshal_VOID__POINTER, - G_TYPE_NONE, - 1, - G_TYPE_POINTER); - -/** * EphyWebView::search-key-press: * @view: the #EphyWebView that received the signal * @event: the #GdkEventKey which triggered this signal diff --git a/embed/ephy-web-view.h b/embed/ephy-web-view.h index 5b6a28d4c..c2ee23bf7 100644 --- a/embed/ephy-web-view.h +++ b/embed/ephy-web-view.h @@ -124,8 +124,6 @@ struct _EphyWebViewClass EphyEmbedEvent *event); gboolean (* dom_mouse_down) (EphyWebView *view, EphyEmbedEvent *event); - void (* dom_content_loaded) (EphyWebView *view, - gpointer event); void (* popup_blocked) (EphyWebView *view, const char *address, const char *target, |