aboutsummaryrefslogtreecommitdiffstats
path: root/embed/ephy-web-view.h
diff options
context:
space:
mode:
authorXan Lopez <xan@igalia.com>2012-03-15 16:37:17 +0800
committerXan Lopez <xan@igalia.com>2012-03-15 16:37:17 +0800
commit3060de2a0ceeb976c1da6b79f3b3a4c7ed7848d2 (patch)
treeb7ee5cdef1c72eaae6b1b4e3d4af30ddeb06f3ba /embed/ephy-web-view.h
parent00276359e926f4f1fba732534a0b47bec88371f5 (diff)
downloadgsoc2013-epiphany-3060de2a0ceeb976c1da6b79f3b3a4c7ed7848d2.tar.gz
gsoc2013-epiphany-3060de2a0ceeb976c1da6b79f3b3a4c7ed7848d2.tar.zst
gsoc2013-epiphany-3060de2a0ceeb976c1da6b79f3b3a4c7ed7848d2.zip
ephy-web-view: remove can_go_up/go_up code
We do not support this anymore in our UI.
Diffstat (limited to 'embed/ephy-web-view.h')
-rw-r--r--embed/ephy-web-view.h7
1 files changed, 2 insertions, 5 deletions
diff --git a/embed/ephy-web-view.h b/embed/ephy-web-view.h
index d3e42293f..33d912f14 100644
--- a/embed/ephy-web-view.h
+++ b/embed/ephy-web-view.h
@@ -45,9 +45,8 @@ typedef struct _EphyWebViewPrivate EphyWebViewPrivate;
typedef enum
{
- EPHY_WEB_VIEW_NAV_UP = 1 << 0,
- EPHY_WEB_VIEW_NAV_BACK = 1 << 1,
- EPHY_WEB_VIEW_NAV_FORWARD = 1 << 2
+ EPHY_WEB_VIEW_NAV_BACK = 1 << 0,
+ EPHY_WEB_VIEW_NAV_FORWARD = 1 << 1
} EphyWebViewNavigationFlags;
typedef enum
@@ -155,7 +154,6 @@ gboolean ephy_web_view_get_is_blank (EphyWebView
gboolean ephy_web_view_has_modified_forms (EphyWebView *view);
char * ephy_web_view_get_location (EphyWebView *view,
gboolean toplevel);
-void ephy_web_view_go_up (EphyWebView *view);
void ephy_web_view_get_security_level (EphyWebView *view,
EphyWebViewSecurityLevel *level,
char **description);
@@ -164,7 +162,6 @@ void ephy_web_view_print (EphyWebView
void ephy_web_view_set_title (EphyWebView *view,
const char *view_title);
const char * ephy_web_view_get_title (EphyWebView *view);
-gboolean ephy_web_view_can_go_up (EphyWebView *view);
const char * ephy_web_view_get_address (EphyWebView *view);
const char * ephy_web_view_get_title_composite (EphyWebView *view);