From ce6e072e9619efd9ac093080ad33ad2bbe6bf604 Mon Sep 17 00:00:00 2001 From: Christian Persch Date: Sat, 25 Sep 2004 13:22:27 +0000 Subject: Mozilla API changes. 2004-09-25 Christian Persch * configure.ac: * embed/mozilla/GlobalHistory.cpp: * embed/mozilla/mozilla-embed-single.cpp: Mozilla API changes. --- ChangeLog | 8 ++++++++ configure.ac | 23 +++++++++++++++++++++++ embed/mozilla/GlobalHistory.cpp | 5 +++++ embed/mozilla/mozilla-embed-single.cpp | 13 +++++++++++-- 4 files changed, 47 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index afec21bbf..be9952145 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,11 @@ +2004-09-25 Christian Persch + + * configure.ac: + * embed/mozilla/GlobalHistory.cpp: + * embed/mozilla/mozilla-embed-single.cpp: + + Mozilla API changes. + 2004-09-23 Christian Persch * embed/mozilla/mozilla-embed-single.cpp: diff --git a/configure.ac b/configure.ac index fc7f60a34..3de59a622 100644 --- a/configure.ac +++ b/configure.ac @@ -298,6 +298,24 @@ AC_COMPILE_IFELSE( AC_MSG_RESULT([$result]) +dnl changed in 1.8a4 + +AC_MSG_CHECKING([for whether nsIGlobalHistory2::AddURI takes a referrer]) + +AC_COMPILE_IFELSE( + [AC_LANG_PROGRAM( + [[#include + #include + #include + #include ]], + [[nsIBrowserHistory *p; + p->AddURI(nsnull,PR_FALSE,PR_FALSE,nsnull);]] + )], + [AC_DEFINE([MOZ_NSIBROWSERHISTORY_ADDURI_WITH_REFERRER],[1],[dummy]) result=yes], + [result=no]) + +AC_MSG_RESULT([$result]) + dnl Changed from char* to nsACString& in mozilla 1.8a2 AC_MSG_CHECKING([whether nsIProtocolProxyService::ConfigureFromPAC expects nsACString&]) @@ -330,6 +348,11 @@ AC_COMPILE_IFELSE( AC_MSG_RESULT([$result]) +dnl changed from nsIXULChromeRegistry in 1.8a4 + +AC_CHECK_FILE([$MOZILLA_INCLUDE_ROOT/chrome/nsIChromeRegistrySea.h], + [AC_DEFINE([HAVE_CHROME_NSICHROMEREGISTRYSEA_H], [1], [Define if nsIChromeRegistrySea.h exists])]) + dnl check for broken reload in GtkMozEmbed dnl FIXME: I have NO IDEA how to do this. For now, just always enable our workaround dnl diff --git a/embed/mozilla/GlobalHistory.cpp b/embed/mozilla/GlobalHistory.cpp index c2ba7a1ae..e46af14cd 100644 --- a/embed/mozilla/GlobalHistory.cpp +++ b/embed/mozilla/GlobalHistory.cpp @@ -43,8 +43,13 @@ MozGlobalHistory::~MozGlobalHistory () { } +#ifdef MOZ_NSIBROWSERHISTORY_ADDURI_WITH_REFERRER +/* void addURI (in nsIURI aURI, in boolean aRedirect, in boolean aToplevel, in nsIURI aReferrer); */ +NS_IMETHODIMP MozGlobalHistory::AddURI(nsIURI *aURI, PRBool aRedirect, PRBool aToplevel, nsIURI *aReferrer) +#else /* void addURI (in nsIURI aURI, in boolean aRedirect, in boolean aToplevel); */ NS_IMETHODIMP MozGlobalHistory::AddURI(nsIURI *aURI, PRBool aRedirect, PRBool aToplevel) +#endif { nsresult rv; diff --git a/embed/mozilla/mozilla-embed-single.cpp b/embed/mozilla/mozilla-embed-single.cpp index d4262b1cd..9525b5fa2 100644 --- a/embed/mozilla/mozilla-embed-single.cpp +++ b/embed/mozilla/mozilla-embed-single.cpp @@ -71,9 +71,14 @@ #include #endif +#if defined (HAVE_CHROME_NSICHROMEREGISTRYSEA_H) +#include +#elif defined(MOZ_NSIXULCHROMEREGISTRY_SELECTSKIN) +#include +#endif + #ifdef ALLOW_PRIVATE_API // FIXME: For setting the locale. hopefully gtkmozembed will do itself soon -#include #include #include #include @@ -404,11 +409,15 @@ static nsresult mozilla_init_chrome (void) { /* FIXME: can we just omit this on new-toolkit ? */ -#ifdef MOZ_NSIXULCHROMEREGISTRY_SELECTSKIN +#if defined(MOZ_NSIXULCHROMEREGISTRY_SELECTSKIN) || defined(HAVE_CHROME_NSICHROMEREGISTRYSEA_H) nsresult rv; nsEmbedString uiLang; +#ifdef HAVE_CHROME_NSICHROMEREGISTRYSEA_H + nsCOMPtr chromeRegistry = do_GetService (NS_CHROMEREGISTRY_CONTRACTID); +#else nsCOMPtr chromeRegistry = do_GetService (NS_CHROMEREGISTRY_CONTRACTID); +#endif NS_ENSURE_TRUE (chromeRegistry, NS_ERROR_FAILURE); // Set skin to 'classic' so we get native scrollbars. -- cgit v1.2.3