diff options
author | Xan Lopez <xan@src.gnome.org> | 2009-02-27 01:46:41 +0800 |
---|---|---|
committer | Xan Lopez <xan@src.gnome.org> | 2009-02-27 01:46:41 +0800 |
commit | 026b90333c7c21998f1832c0e741937c6108d196 (patch) | |
tree | 73f1aef212e60cd678de4735147bf901f265ea63 /embed/ephy-embed.h | |
parent | 887bf0716e88a3dea7b6c6a60c37d59d24f652a8 (diff) | |
download | gsoc2013-epiphany-026b90333c7c21998f1832c0e741937c6108d196.tar.gz gsoc2013-epiphany-026b90333c7c21998f1832c0e741937c6108d196.tar.zst gsoc2013-epiphany-026b90333c7c21998f1832c0e741937c6108d196.zip |
Remove embedding APIs for set/get encoding.
Use WebKit API directly.
svn path=/trunk/; revision=8817
Diffstat (limited to 'embed/ephy-embed.h')
-rw-r--r-- | embed/ephy-embed.h | 11 |
1 files changed, 1 insertions, 10 deletions
diff --git a/embed/ephy-embed.h b/embed/ephy-embed.h index 7855898b4..0b9c65149 100644 --- a/embed/ephy-embed.h +++ b/embed/ephy-embed.h @@ -190,10 +190,7 @@ struct _EphyEmbedIface void (* scroll_pixels) (EphyEmbed *embed, int dx, int dy); - const char * (* get_encoding) (EphyEmbed *embed); gboolean (* has_automatic_encoding) (EphyEmbed *embed); - void (* set_encoding) (EphyEmbed *embed, - const char *encoding); void (* set_print_preview_mode) (EphyEmbed *embed, gboolean mode); int (* print_preview_n_pages) (EphyEmbed *embed); @@ -308,13 +305,7 @@ gboolean ephy_embed_get_is_blank (EphyEmbed *embed); const char * ephy_embed_get_loading_title (EphyEmbed *embed); gboolean ephy_embed_get_visibility (EphyEmbed *embed); -/* Encoding */ -const char *ephy_embed_get_encoding (EphyEmbed *embed); - -gboolean ephy_embed_has_automatic_encoding (EphyEmbed *embed); - -void ephy_embed_set_encoding (EphyEmbed *embed, - const char *encoding); +gboolean ephy_embed_has_automatic_encoding (EphyEmbed *embed); /* Print */ void ephy_embed_set_print_preview_mode (EphyEmbed *embed, |