diff options
author | Xan Lopez <xan@gnome.org> | 2009-06-05 21:32:55 +0800 |
---|---|---|
committer | Xan Lopez <xan@gnome.org> | 2009-06-05 22:54:08 +0800 |
commit | 8f3aa835aa3fb12e8f9805c3ecb454027398102c (patch) | |
tree | 94223e73426ef759ad4176c33ef3a659895eb0ac /embed/ephy-embed-container.h | |
parent | 1d49b43e4da3c5153a444596b24340d40ad98d31 (diff) | |
download | gsoc2013-epiphany-8f3aa835aa3fb12e8f9805c3ecb454027398102c.tar.gz gsoc2013-epiphany-8f3aa835aa3fb12e8f9805c3ecb454027398102c.tar.zst gsoc2013-epiphany-8f3aa835aa3fb12e8f9805c3ecb454027398102c.zip |
Move all methods, signals and properties from EphyEmbed and EphyBaseEmbed to EphyWebView.
Those two embed classes are pretty much dummy leftovers, so it should be
easier to remove them now.
Diffstat (limited to 'embed/ephy-embed-container.h')
-rw-r--r-- | embed/ephy-embed-container.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/embed/ephy-embed-container.h b/embed/ephy-embed-container.h index 8a502fdd0..13c602a18 100644 --- a/embed/ephy-embed-container.h +++ b/embed/ephy-embed-container.h @@ -25,6 +25,7 @@ #define EPHY_EMBED_CONTAINER_H #include "ephy-embed.h" +#include "ephy-web-view.h" #include <glib-object.h> #include <glib.h> @@ -62,7 +63,7 @@ struct _EphyEmbedContainerIface gboolean (* get_is_popup) (EphyEmbedContainer *container); - EphyEmbedChrome (* get_chrome) (EphyEmbedContainer *container); + EphyWebViewChrome (* get_chrome) (EphyEmbedContainer *container); }; GType ephy_embed_container_get_type (void); @@ -84,7 +85,7 @@ GList *ephy_embed_container_get_children (EphyEmbedContainer *container); gboolean ephy_embed_container_get_is_popup (EphyEmbedContainer *container); -EphyEmbedChrome ephy_embed_container_get_chrome (EphyEmbedContainer *container); +EphyWebViewChrome ephy_embed_container_get_chrome (EphyEmbedContainer *container); G_END_DECLS |