diff options
author | Xan Lopez <xan@src.gnome.org> | 2007-11-12 07:18:49 +0800 |
---|---|---|
committer | Xan Lopez <xan@src.gnome.org> | 2007-11-12 07:18:49 +0800 |
commit | 0d4e69b6f75a8d341d83c7a8752254bc28d8dade (patch) | |
tree | b5d1a30e4ace7a1e0df7b7900ea23219101f871e /embed/ephy-embed.c | |
parent | d698eb5b87aa10c888944fbf2db066af2df987bd (diff) | |
download | gsoc2013-epiphany-0d4e69b6f75a8d341d83c7a8752254bc28d8dade.tar.gz gsoc2013-epiphany-0d4e69b6f75a8d341d83c7a8752254bc28d8dade.tar.zst gsoc2013-epiphany-0d4e69b6f75a8d341d83c7a8752254bc28d8dade.zip |
Remove unused ge_net_state and ge_security_change.
svn path=/trunk/; revision=7665
Diffstat (limited to 'embed/ephy-embed.c')
-rw-r--r-- | embed/ephy-embed.c | 38 |
1 files changed, 0 insertions, 38 deletions
diff --git a/embed/ephy-embed.c b/embed/ephy-embed.c index 36a445e23..cb1119b6d 100644 --- a/embed/ephy-embed.c +++ b/embed/ephy-embed.c @@ -175,26 +175,6 @@ ephy_embed_base_init (gpointer g_class) G_TYPE_STRING | G_SIGNAL_TYPE_STATIC_SCOPE, G_TYPE_STRING | G_SIGNAL_TYPE_STATIC_SCOPE); /** - * EphyEmbed::ge-net-state: - * @embed: - * @uri: the URI @embed is loading - * @state: the #EmbedState of @embed - * - * The ::ge_net_state signal is emitted when @embed's network negotiation state - * changes. For example, this will indicate when page loading is complete or - * cancelled. - **/ - g_signal_new ("ge_net_state", - EPHY_TYPE_EMBED, - G_SIGNAL_RUN_FIRST, - G_STRUCT_OFFSET (EphyEmbedIface, net_state), - NULL, NULL, - ephy_marshal_VOID__STRING_FLAGS, - G_TYPE_NONE, - 2, - G_TYPE_STRING | G_SIGNAL_TYPE_STATIC_SCOPE, - EPHY_TYPE_EMBED_NET_STATE); -/** * EphyEmbed::ge-dom-mouse-click: * @embed: * @event: the #EphyEmbedEvent which triggered this signal @@ -228,24 +208,6 @@ ephy_embed_base_init (gpointer g_class) 1, G_TYPE_OBJECT); /** - * EphyEmbed::ge-security-change: - * @embed: - * @level: @embed's new #EphyEmbedSecurityLevel - * - * The ::ge_security_change signal is emitted when the security level of @embed - * changes. For example, this will happen when the user browses from an - * insecure website to an SSL-secured one. - **/ - g_signal_new ("ge_security_change", - EPHY_TYPE_EMBED, - G_SIGNAL_RUN_LAST, - G_STRUCT_OFFSET (EphyEmbedIface, security_change), - NULL, NULL, - g_cclosure_marshal_VOID__ENUM, - G_TYPE_NONE, - 1, - EPHY_TYPE_EMBED_SECURITY_LEVEL); -/** * EphyEmbed::ge-zoom-change: * @embed: * @zoom: @embed's new zoom level |