diff options
author | Marco Pesenti Gritti <mpeseng@src.gnome.org> | 2003-06-20 20:20:06 +0800 |
---|---|---|
committer | Marco Pesenti Gritti <mpeseng@src.gnome.org> | 2003-06-20 20:20:06 +0800 |
commit | 8b66172512d6bfbdbb783613ed9b8e6cc057e86a (patch) | |
tree | 9612fc0dd6058bdaece4e90ef82e33b59a53a8f5 | |
parent | 5b80fbd659cd964a59bd8a07ebf09616569608c3 (diff) | |
download | gsoc2013-epiphany-8b66172512d6bfbdbb783613ed9b8e6cc057e86a.tar gsoc2013-epiphany-8b66172512d6bfbdbb783613ed9b8e6cc057e86a.tar.gz gsoc2013-epiphany-8b66172512d6bfbdbb783613ed9b8e6cc057e86a.tar.bz2 gsoc2013-epiphany-8b66172512d6bfbdbb783613ed9b8e6cc057e86a.tar.lz gsoc2013-epiphany-8b66172512d6bfbdbb783613ed9b8e6cc057e86a.tar.xz gsoc2013-epiphany-8b66172512d6bfbdbb783613ed9b8e6cc057e86a.tar.zst gsoc2013-epiphany-8b66172512d6bfbdbb783613ed9b8e6cc057e86a.zip |
hmmm
-rw-r--r-- | src/ephy-tab.h | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/src/ephy-tab.h b/src/ephy-tab.h index 38d07feca..9b9aa6ab4 100644 --- a/src/ephy-tab.h +++ b/src/ephy-tab.h @@ -46,6 +46,13 @@ typedef enum TAB_NAV_FORWARD = 1 << 2, } TabNavigationFlags; +typedef enum +{ + TAB_ADDRESS_EXPIRE_NOW, + TAB_ADDRESS_EXPIRE_NEXT, + TAB_ADDRESS_EXPIRE_CURRENT +} TabAddressExpire; + struct EphyTab { GObject parent; @@ -83,7 +90,8 @@ const char * ephy_tab_get_link_message (EphyTab *tab); int ephy_tab_get_load_percent (EphyTab *tab); void ephy_tab_set_location (EphyTab *tab, - const char *location); + const char *location, + TabAddressExpire expire); const char * ephy_tab_get_location (EphyTab *tab); |