diff options
author | Christian Persch <chpe@cvs.gnome.org> | 2005-08-25 21:51:44 +0800 |
---|---|---|
committer | Christian Persch <chpe@src.gnome.org> | 2005-08-25 21:51:44 +0800 |
commit | d5284828c11ec944b8020cab3038c4a867ab0519 (patch) | |
tree | c937a7bb7e18c8be543b238bccefd43736fa4ae3 /embed/mozilla | |
parent | 352d6d7b6ab8268d2b89a1dc10fbcdf91fae7c02 (diff) | |
download | gsoc2013-epiphany-d5284828c11ec944b8020cab3038c4a867ab0519.tar gsoc2013-epiphany-d5284828c11ec944b8020cab3038c4a867ab0519.tar.gz gsoc2013-epiphany-d5284828c11ec944b8020cab3038c4a867ab0519.tar.bz2 gsoc2013-epiphany-d5284828c11ec944b8020cab3038c4a867ab0519.tar.lz gsoc2013-epiphany-d5284828c11ec944b8020cab3038c4a867ab0519.tar.xz gsoc2013-epiphany-d5284828c11ec944b8020cab3038c4a867ab0519.tar.zst gsoc2013-epiphany-d5284828c11ec944b8020cab3038c4a867ab0519.zip |
Gecko API change.
2005-08-25 Christian Persch <chpe@cvs.gnome.org>
* embed/mozilla/GlobalHistory.cpp:
Gecko API change.
Diffstat (limited to 'embed/mozilla')
-rw-r--r-- | embed/mozilla/GlobalHistory.cpp | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/embed/mozilla/GlobalHistory.cpp b/embed/mozilla/GlobalHistory.cpp index 6243fb0d2..27d71b9ab 100644 --- a/embed/mozilla/GlobalHistory.cpp +++ b/embed/mozilla/GlobalHistory.cpp @@ -125,3 +125,21 @@ NS_IMETHODIMP MozGlobalHistory::SetPageTitle(nsIURI *aURI, const nsAString & aTi return NS_OK; } + +#ifdef HAVE_GECKO_1_9 +/* unsigned long getURIGeckoFlags(in nsIURI aURI); */ +NS_IMETHODIMP +GlobalHistory::GetURIGeckoFlags(nsIURI *aURI, PRUint32* aFlags) +{ +#error Implement me! + return NS_ERROR_NOT_IMPLEMENTED: +} + +/* void setURIGeckoFlags(in nsIURI aURI, in unsigned long aFlags); */ +NS_IMETHODIMP +GlobalHistory::SetURIGeckoFlags(nsIURI *aURI, PRUint32 aFlags) +{ +#error Implement me! + return NS_ERROR_NOT_IMPLEMENTED: +} +#endif /* HAVE_GECKO_1_9 */ |