diff options
author | Xan Lopez <xan@gnome.org> | 2010-05-24 18:51:29 +0800 |
---|---|---|
committer | Xan Lopez <xan@gnome.org> | 2010-05-25 04:16:05 +0800 |
commit | f269d5a184b884dcc4927f5667d1ef4c9acad8a8 (patch) | |
tree | 21e85b3f21e2c86b530c13aeb8bced3e2ddf2ac9 /embed | |
parent | d22be40676ca6dbcc13c98b85f47f7a15d38151f (diff) | |
download | gsoc2013-epiphany-f269d5a184b884dcc4927f5667d1ef4c9acad8a8.tar.gz gsoc2013-epiphany-f269d5a184b884dcc4927f5667d1ef4c9acad8a8.tar.zst gsoc2013-epiphany-f269d5a184b884dcc4927f5667d1ef4c9acad8a8.zip |
ephy-web-view: remove dom-content-loaded signal
Would duplicate the functionality of the WebKit DOM signals, if it
worked at all...
Diffstat (limited to 'embed')
-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 3dc400433..10f4ae8ff 100644 --- a/embed/ephy-web-view.c +++ b/embed/ephy-web-view.c @@ -1794,24 +1794,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 1b45ed491..94e7cced9 100644 --- a/embed/ephy-web-view.h +++ b/embed/ephy-web-view.h @@ -111,8 +111,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, |