diff options
Diffstat (limited to 'embed/ephy-web-view.c')
-rw-r--r-- | embed/ephy-web-view.c | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/embed/ephy-web-view.c b/embed/ephy-web-view.c index 7606e6d01..10e6d3475 100644 --- a/embed/ephy-web-view.c +++ b/embed/ephy-web-view.c @@ -77,6 +77,23 @@ ephy_web_view_load_request (EphyWebView *web_view, } /** + * ephy_web_view_load_url: + * @embed: an #EphyWebView + * @url: a URL + * + * Loads @url in @embed. + **/ +void +ephy_web_view_load_url (EphyWebView *view, + const char *url) +{ + g_return_if_fail (EPHY_IS_WEB_VIEW (view)); + g_return_if_fail (url); + + webkit_web_view_open (WEBKIT_WEB_VIEW (view), url); +} + +/** * ephy_web_view_copy_back_history: * @source: the #EphyWebView from which to get the back history * @dest: the #EphyWebView to copy the history to |