diff options
author | Xan Lopez <xan@gnome.org> | 2009-06-14 06:04:41 +0800 |
---|---|---|
committer | Xan Lopez <xan@gnome.org> | 2009-06-14 06:04:41 +0800 |
commit | a1af750fa1343236fd81ea9c1b6962e8ebabd4af (patch) | |
tree | 34076370c0e37249f164860e616995a9e2601ece /embed/ephy-web-view.h | |
parent | 44e17944c010fd3e4aeb2b3eacd6ccc0be624df8 (diff) | |
download | gsoc2013-epiphany-a1af750fa1343236fd81ea9c1b6962e8ebabd4af.tar.gz gsoc2013-epiphany-a1af750fa1343236fd81ea9c1b6962e8ebabd4af.tar.zst gsoc2013-epiphany-a1af750fa1343236fd81ea9c1b6962e8ebabd4af.zip |
Get rid of redundant 'load-progress' property in EphyWebView.
We now use WebKitWebView's 'progress' property directly.
The "opening about:blank blinks the entry" bug is back because for
some reason a) webkit reports a 10% progress for that URL b) get_uri
reports NULL until 100% is loaded for only that page, so blacklisting
by URI is not possible either.
Diffstat (limited to 'embed/ephy-web-view.h')
-rw-r--r-- | embed/ephy-web-view.h | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/embed/ephy-web-view.h b/embed/ephy-web-view.h index ed8b7a4dd..0a727a88d 100644 --- a/embed/ephy-web-view.h +++ b/embed/ephy-web-view.h @@ -181,7 +181,6 @@ gboolean ephy_web_view_get_load_status (EphyWebView const char * ephy_web_view_get_loading_title (EphyWebView *view); GdkPixbuf * ephy_web_view_get_icon (EphyWebView *view); EphyWebViewDocumentType ephy_web_view_get_document_type (EphyWebView *view); -int ephy_web_view_get_load_percent (EphyWebView *view); EphyWebViewNavigationFlags ephy_web_view_get_navigation_flags (EphyWebView *view); const char * ephy_web_view_get_status_message (EphyWebView *view); const char * ephy_web_view_get_link_message (EphyWebView *view); @@ -233,8 +232,6 @@ void ephy_web_view_update_from_net_state (EphyWebView EphyWebViewNetState state); void ephy_web_view_location_changed (EphyWebView *view, const char *location); -void ephy_web_view_set_load_percent (EphyWebView *view, - int percent); void ephy_web_view_set_loading_title (EphyWebView *view, const char *title, gboolean is_address); |