diff options
author | Xan Lopez <xan@igalia.com> | 2011-12-11 02:49:07 +0800 |
---|---|---|
committer | Xan Lopez <xan@igalia.com> | 2011-12-11 02:49:07 +0800 |
commit | 3f14045eff423852cd09b47f18fa57b0475d3b00 (patch) | |
tree | 6a2cb1f908fc21b23b7bce92fefa05aee3b3db25 /embed/ephy-embed.c | |
parent | f805f696bc61573e1683c5ebfd9a6cd8d3257639 (diff) | |
download | gsoc2013-epiphany-3f14045eff423852cd09b47f18fa57b0475d3b00.tar gsoc2013-epiphany-3f14045eff423852cd09b47f18fa57b0475d3b00.tar.gz gsoc2013-epiphany-3f14045eff423852cd09b47f18fa57b0475d3b00.tar.bz2 gsoc2013-epiphany-3f14045eff423852cd09b47f18fa57b0475d3b00.tar.lz gsoc2013-epiphany-3f14045eff423852cd09b47f18fa57b0475d3b00.tar.xz gsoc2013-epiphany-3f14045eff423852cd09b47f18fa57b0475d3b00.tar.zst gsoc2013-epiphany-3f14045eff423852cd09b47f18fa57b0475d3b00.zip |
ephy-embed: small cleanups
Diffstat (limited to 'embed/ephy-embed.c')
-rw-r--r-- | embed/ephy-embed.c | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/embed/ephy-embed.c b/embed/ephy-embed.c index e9b442ab4..fede503b3 100644 --- a/embed/ephy-embed.c +++ b/embed/ephy-embed.c @@ -24,33 +24,31 @@ */ #include "config.h" +#include "ephy-embed.h" #include "ephy-adblock-manager.h" #include "ephy-debug.h" #include "ephy-download.h" -#include "ephy-embed.h" #include "ephy-embed-event.h" +#include "ephy-embed-prefs.h" #include "ephy-embed-shell.h" #include "ephy-embed-single.h" -#include "ephy-embed-prefs.h" #include "ephy-embed-utils.h" #include "ephy-file-helpers.h" #include "ephy-history.h" +#include "ephy-overlay-escaping-child.h" #include "ephy-prefs.h" #include "ephy-settings.h" #include "ephy-stock-icons.h" #include "ephy-string.h" #include "ephy-web-view.h" #include "gedit-overlay.h" -#include "ephy-overlay-escaping-child.h" #include <errno.h> #include <glib/gi18n.h> #include <string.h> #include <webkit/webkit.h> -static void ephy_embed_class_init (EphyEmbedClass *klass); -static void ephy_embed_init (EphyEmbed *gs); static void ephy_embed_constructed (GObject *object); static gboolean ephy_embed_inspect_show_cb (WebKitWebInspector *inspector, EphyEmbed *embed); |