aboutsummaryrefslogtreecommitdiffstats
path: root/embed
diff options
context:
space:
mode:
authorChristian Persch <chpe@cvs.gnome.org>2004-09-25 21:22:27 +0800
committerChristian Persch <chpe@src.gnome.org>2004-09-25 21:22:27 +0800
commitce6e072e9619efd9ac093080ad33ad2bbe6bf604 (patch)
treed212a34ddaa184c39740fa450ceac5f67cebb5b6 /embed
parent0a635fdfd785c25386198b957aa5cd4e640c2cd3 (diff)
downloadgsoc2013-epiphany-ce6e072e9619efd9ac093080ad33ad2bbe6bf604.tar
gsoc2013-epiphany-ce6e072e9619efd9ac093080ad33ad2bbe6bf604.tar.gz
gsoc2013-epiphany-ce6e072e9619efd9ac093080ad33ad2bbe6bf604.tar.bz2
gsoc2013-epiphany-ce6e072e9619efd9ac093080ad33ad2bbe6bf604.tar.lz
gsoc2013-epiphany-ce6e072e9619efd9ac093080ad33ad2bbe6bf604.tar.xz
gsoc2013-epiphany-ce6e072e9619efd9ac093080ad33ad2bbe6bf604.tar.zst
gsoc2013-epiphany-ce6e072e9619efd9ac093080ad33ad2bbe6bf604.zip
Mozilla API changes.
2004-09-25 Christian Persch <chpe@cvs.gnome.org> * configure.ac: * embed/mozilla/GlobalHistory.cpp: * embed/mozilla/mozilla-embed-single.cpp: Mozilla API changes.
Diffstat (limited to 'embed')
-rw-r--r--embed/mozilla/GlobalHistory.cpp5
-rw-r--r--embed/mozilla/mozilla-embed-single.cpp13
2 files changed, 16 insertions, 2 deletions
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 <nsIPassword.h>
#endif
+#if defined (HAVE_CHROME_NSICHROMEREGISTRYSEA_H)
+#include <chrome/nsIChromeRegistrySea.h>
+#elif defined(MOZ_NSIXULCHROMEREGISTRY_SELECTSKIN)
+#include <nsIChromeRegistry.h>
+#endif
+
#ifdef ALLOW_PRIVATE_API
// FIXME: For setting the locale. hopefully gtkmozembed will do itself soon
-#include <nsIChromeRegistry.h>
#include <nsILocaleService.h>
#include <nsIHttpAuthManager.h>
#include <nsICacheService.h>
@@ -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<nsIChromeRegistrySea> chromeRegistry = do_GetService (NS_CHROMEREGISTRY_CONTRACTID);
+#else
nsCOMPtr<nsIXULChromeRegistry> chromeRegistry = do_GetService (NS_CHROMEREGISTRY_CONTRACTID);
+#endif
NS_ENSURE_TRUE (chromeRegistry, NS_ERROR_FAILURE);
// Set skin to 'classic' so we get native scrollbars.