diff options
author | Christian Persch <chpe@cvs.gnome.org> | 2004-06-15 06:34:43 +0800 |
---|---|---|
committer | Christian Persch <chpe@src.gnome.org> | 2004-06-15 06:34:43 +0800 |
commit | c41a8f5a1e551116d8a1d82e0aa3246e636cc175 (patch) | |
tree | 9737a41f6c78c8fcdd4bc036b3153b628b893b19 /embed/mozilla/EphyBrowser.h | |
parent | 367e685ae5c06b9394607c98bca9e726b63e034c (diff) | |
download | gsoc2013-epiphany-c41a8f5a1e551116d8a1d82e0aa3246e636cc175.tar gsoc2013-epiphany-c41a8f5a1e551116d8a1d82e0aa3246e636cc175.tar.gz gsoc2013-epiphany-c41a8f5a1e551116d8a1d82e0aa3246e636cc175.tar.bz2 gsoc2013-epiphany-c41a8f5a1e551116d8a1d82e0aa3246e636cc175.tar.lz gsoc2013-epiphany-c41a8f5a1e551116d8a1d82e0aa3246e636cc175.tar.xz gsoc2013-epiphany-c41a8f5a1e551116d8a1d82e0aa3246e636cc175.tar.zst gsoc2013-epiphany-c41a8f5a1e551116d8a1d82e0aa3246e636cc175.zip |
Work around mozilla bug #246392 which goes back to the original urls when
2004-06-15 Christian Persch <chpe@cvs.gnome.org>
* embed/mozilla/EphyBrowser.cpp:
* embed/mozilla/EphyBrowser.h:
* embed/mozilla/mozilla-embed.cpp:
Work around mozilla bug #246392 which goes back to the original urls
when reloading a frameset. Fixes bug #115800.
Diffstat (limited to 'embed/mozilla/EphyBrowser.h')
-rw-r--r-- | embed/mozilla/EphyBrowser.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/embed/mozilla/EphyBrowser.h b/embed/mozilla/EphyBrowser.h index f2f034dd1..07023887c 100644 --- a/embed/mozilla/EphyBrowser.h +++ b/embed/mozilla/EphyBrowser.h @@ -100,6 +100,12 @@ public: nsresult GetSHUrlAtIndex (PRInt32 index, nsACString &url); nsresult GoToHistoryIndex (PRInt16 index); + enum { RELOAD_NORMAL = 0 }; + enum { RELOAD_FORCE = 1 }; + enum { RELOAD_ENCODING_CHANGE = 2 }; + + nsresult Reload (PRUint32 flags); + nsresult ForceEncoding (const char *encoding); nsresult GetEncoding (nsACString &encoding); nsresult GetForcedEncoding (nsACString &encoding); |