diff options
author | Gustavo Noronha Silva <gns@gnome.org> | 2009-01-15 04:41:38 +0800 |
---|---|---|
committer | Gustavo Noronha Silva <kov@debian.org> | 2009-05-30 00:15:59 +0800 |
commit | 8f4747aa1731acf83f1bd7249b392d0cded08c4b (patch) | |
tree | 1d23aed00b5e112df3738ac1becee5dde83ee61b /embed/ephy-web-view.h | |
parent | 682bbd135a3cde308e5c067892ad43e2dcecb44f (diff) | |
download | gsoc2013-epiphany-8f4747aa1731acf83f1bd7249b392d0cded08c4b.tar.gz gsoc2013-epiphany-8f4747aa1731acf83f1bd7249b392d0cded08c4b.tar.zst gsoc2013-epiphany-8f4747aa1731acf83f1bd7249b392d0cded08c4b.zip |
Provide API to loading using WebKitNetworkRequest
As the first API adition to out WebKitWebView subclass, we allow
Epiphany code to use a WebKitNetworkRequest to load pages. This way we
can use the full request information, not just the URI.
Diffstat (limited to 'embed/ephy-web-view.h')
-rw-r--r-- | embed/ephy-web-view.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/embed/ephy-web-view.h b/embed/ephy-web-view.h index 3fe9623bc..9fc31355e 100644 --- a/embed/ephy-web-view.h +++ b/embed/ephy-web-view.h @@ -60,6 +60,9 @@ GType ephy_web_view_get_type (void); GtkWidget *ephy_web_view_new (void); +void ephy_web_view_load_request (EphyWebView *web_view, + WebKitNetworkRequest *request); + G_END_DECLS #endif |