diff options
-rw-r--r-- | ChangeLog | 6 | ||||
-rw-r--r-- | embed/mozilla/GlobalHistory.cpp | 18 |
2 files changed, 24 insertions, 0 deletions
@@ -1,5 +1,11 @@ 2005-08-25 Christian Persch <chpe@cvs.gnome.org> + * embed/mozilla/GlobalHistory.cpp: + + Gecko API change. + +2005-08-25 Christian Persch <chpe@cvs.gnome.org> + * configure.ac: Fix configure check for gecko >= 1.8. 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 */ |