diff options
author | Xan Lopez <xlopez@igalia.com> | 2011-09-11 22:52:04 +0800 |
---|---|---|
committer | Xan Lopez <xlopez@igalia.com> | 2011-09-11 22:52:04 +0800 |
commit | 459bebb428dda92619ad15562b5897b52043900d (patch) | |
tree | 75b2e0b956162bfb46785e0c125361441560974a /embed/ephy-web-view.c | |
parent | a525b75a8ba54d1b296bde2a3d72748c3d6967a4 (diff) | |
download | gsoc2013-epiphany-459bebb428dda92619ad15562b5897b52043900d.tar.gz gsoc2013-epiphany-459bebb428dda92619ad15562b5897b52043900d.tar.zst gsoc2013-epiphany-459bebb428dda92619ad15562b5897b52043900d.zip |
ephy-web-view: sort includes
Diffstat (limited to 'embed/ephy-web-view.c')
-rw-r--r-- | embed/ephy-web-view.c | 28 |
1 files changed, 14 insertions, 14 deletions
diff --git a/embed/ephy-web-view.c b/embed/ephy-web-view.c index d181c9b67..f45f58e26 100644 --- a/embed/ephy-web-view.c +++ b/embed/ephy-web-view.c @@ -21,37 +21,37 @@ */ #include "config.h" - -#include <gio/gio.h> -#include <glib/gi18n.h> -#include <glib/gstdio.h> -#include <gtk/gtk.h> -#include <string.h> -#include <webkit/webkit.h> -#include <gnome-keyring.h> -#include <libsoup/soup-gnome.h> +#include "ephy-web-view.h" #include "ephy-debug.h" -#include "ephy-embed.h" #include "ephy-embed-container.h" #include "ephy-embed-prefs.h" #include "ephy-embed-shell.h" #include "ephy-embed-single.h" #include "ephy-embed-type-builtins.h" #include "ephy-embed-utils.h" +#include "ephy-embed.h" +#include "ephy-favicon-cache.h" #include "ephy-file-helpers.h" -#include "ephy-prefs.h" +#include "ephy-history.h" #include "ephy-permission-manager.h" +#include "ephy-prefs.h" #include "ephy-profile-utils.h" -#include "ephy-favicon-cache.h" -#include "ephy-history.h" #include "ephy-request-about.h" #include "ephy-settings.h" #include "ephy-string.h" #include "ephy-web-app-utils.h" -#include "ephy-web-view.h" #include "ephy-zoom.h" +#include <gio/gio.h> +#include <glib/gi18n.h> +#include <glib/gstdio.h> +#include <gnome-keyring.h> +#include <gtk/gtk.h> +#include <libsoup/soup-gnome.h> +#include <string.h> +#include <webkit/webkit.h> + /** * SECTION:ephy-web-view * @short_description: Epiphany custom #WebkitWebView |