diff options
author | Christian Persch <chpe@cvs.gnome.org> | 2004-01-23 07:17:35 +0800 |
---|---|---|
committer | Christian Persch <chpe@src.gnome.org> | 2004-01-23 07:17:35 +0800 |
commit | 200d54ac01a9d4af824f9856c8a90daa786c1c2b (patch) | |
tree | 76ec4878be4bb28f5e3b9baf9ce35e63c2e917fa /embed/ephy-embed.h | |
parent | be37cf95beca847cc73733ef90569e5e50a6fafa (diff) | |
download | gsoc2013-epiphany-200d54ac01a9d4af824f9856c8a90daa786c1c2b.tar gsoc2013-epiphany-200d54ac01a9d4af824f9856c8a90daa786c1c2b.tar.gz gsoc2013-epiphany-200d54ac01a9d4af824f9856c8a90daa786c1c2b.tar.bz2 gsoc2013-epiphany-200d54ac01a9d4af824f9856c8a90daa786c1c2b.tar.lz gsoc2013-epiphany-200d54ac01a9d4af824f9856c8a90daa786c1c2b.tar.xz gsoc2013-epiphany-200d54ac01a9d4af824f9856c8a90daa786c1c2b.tar.zst gsoc2013-epiphany-200d54ac01a9d4af824f9856c8a90daa786c1c2b.zip |
Use both BYPASS_CACHE and BYPASS_PROXY on force-reload. Unified the
2004-01-23 Christian Persch <chpe@cvs.gnome.org>
* embed/ephy-embed.h:
* embed/mozilla/mozilla-embed.cpp:
* src/window-commands.c: (window_cmd_view_reload):
Use both BYPASS_CACHE and BYPASS_PROXY on force-reload.
Unified the handling in mozilla-embed by introducing
EMBED_RELOAD_FORCE, and killed EMBED_RELOAD_BYPASS_[CACHE|PROXY]
since we now always use both together.
Diffstat (limited to 'embed/ephy-embed.h')
-rw-r--r-- | embed/ephy-embed.h | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/embed/ephy-embed.h b/embed/ephy-embed.h index 71ca925d8..e41e9f5e6 100644 --- a/embed/ephy-embed.h +++ b/embed/ephy-embed.h @@ -75,9 +75,8 @@ typedef enum typedef enum { - EMBED_RELOAD_NORMAL = 1 << 1, - EMBED_RELOAD_BYPASSCACHE = 1 << 2, - EMBED_RELOAD_BYPASSPROXY = 1 << 3 + EMBED_RELOAD_NORMAL = 1 << 0, + EMBED_RELOAD_FORCE = 1 << 1 } EmbedReloadFlags; typedef struct |