summaryrefslogtreecommitdiffstats
path: root/src/tab-chrome.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/tab-chrome.h')
-rw-r--r--src/tab-chrome.h9
1 files changed, 7 insertions, 2 deletions
diff --git a/src/tab-chrome.h b/src/tab-chrome.h
index 74f65fe..359bfd1 100644
--- a/src/tab-chrome.h
+++ b/src/tab-chrome.h
@@ -23,10 +23,12 @@
#define MQ_TAB_CHROME_H
#include <gtk/gtk.h>
+#include <webkit2/webkit2.h>
typedef struct {
- GtkWidget *container;
- GtkWidget *uri_entry;
+ GtkWidget *container;
+ GtkWidget *uri_entry;
+ WebKitWebView *web_view;
} MqTabChrome;
MqTabChrome *
@@ -35,4 +37,7 @@ mq_tab_chrome_new(gchar *uri);
GtkWidget *
mq_tab_chrome_get_container(MqTabChrome *chrome);
+void
+mq_tab_chrome_set_web_view(MqTabChrome *chrome, WebKitWebView *web_view);
+
#endif