diff options
Diffstat (limited to 'lib/ephy-web-app-utils.h')
-rw-r--r-- | lib/ephy-web-app-utils.h | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/lib/ephy-web-app-utils.h b/lib/ephy-web-app-utils.h index 54968df80..adb254e5f 100644 --- a/lib/ephy-web-app-utils.h +++ b/lib/ephy-web-app-utils.h @@ -27,6 +27,12 @@ #include <glib.h> #include <gtk/gtk.h> +#ifdef HAVE_WEBKIT2 +#include <webkit2/webkit2.h> +#else +#include <webkit/webkit.h> +#endif + G_BEGIN_DECLS typedef struct { @@ -52,6 +58,10 @@ void ephy_web_application_free_application_list (GList *list); gboolean ephy_web_application_exists (const char *name); +gboolean ephy_web_view_get_best_icon (WebKitWebView *view, + char **uri, + GdkRGBA *rgba); + G_END_DECLS #endif |