aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChristian Persch <chpe@cvs.gnome.org>2004-09-21 20:16:40 +0800
committerChristian Persch <chpe@src.gnome.org>2004-09-21 20:16:40 +0800
commit8f392f3e4c7f93e358bb4a6d7dcebdca5ecb647e (patch)
tree8e4ab558f39793769810a8ae09766a9519b117e3
parentb853dd33180565c32e0955b747bc17e5f10f0bbe (diff)
downloadgsoc2013-epiphany-8f392f3e4c7f93e358bb4a6d7dcebdca5ecb647e.tar
gsoc2013-epiphany-8f392f3e4c7f93e358bb4a6d7dcebdca5ecb647e.tar.gz
gsoc2013-epiphany-8f392f3e4c7f93e358bb4a6d7dcebdca5ecb647e.tar.bz2
gsoc2013-epiphany-8f392f3e4c7f93e358bb4a6d7dcebdca5ecb647e.tar.lz
gsoc2013-epiphany-8f392f3e4c7f93e358bb4a6d7dcebdca5ecb647e.tar.xz
gsoc2013-epiphany-8f392f3e4c7f93e358bb4a6d7dcebdca5ecb647e.tar.zst
gsoc2013-epiphany-8f392f3e4c7f93e358bb4a6d7dcebdca5ecb647e.zip
Simplified nsIContentPolicy API check.
2004-09-21 Christian Persch <chpe@cvs.gnome.org> * configure.in: * embed/mozilla/EphyContentPolicy.cpp: Simplified nsIContentPolicy API check.
-rw-r--r--ChangeLog7
-rw-r--r--configure.in8
-rw-r--r--embed/mozilla/EphyContentPolicy.cpp4
3 files changed, 14 insertions, 5 deletions
diff --git a/ChangeLog b/ChangeLog
index 3283ebc69..a15dfff3f 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,6 +1,13 @@
2004-09-21 Christian Persch <chpe@cvs.gnome.org>
* configure.in:
+ * embed/mozilla/EphyContentPolicy.cpp:
+
+ Simplified nsIContentPolicy API check.
+
+2004-09-21 Christian Persch <chpe@cvs.gnome.org>
+
+ * configure.in:
* embed/mozilla/ContentHandler.cpp:
* embed/mozilla/ContentHandler.h:
* embed/mozilla/EphyBrowser.cpp:
diff --git a/configure.in b/configure.in
index 51ef3b432..12a7f89c7 100644
--- a/configure.in
+++ b/configure.in
@@ -236,10 +236,12 @@ AC_COMPILE_IFELSE(
nsISupports *arg4;
p->ShouldLoad(0,nsnull,nsnull,arg4,nsEmbedCString(),nsnull,nsnull);]]
)],
- [AC_DEFINE([MOZ_NSICONTENTPOLICY_VARIANT_2],[1],[dummy]) result=2],
- [AC_DEFINE([MOZ_NSICONTENTPOLICY_VARIANT_1],[1],[dummy]) result=1])
+ [variant=2],
+ [variant=1])
-AC_MSG_RESULT([variant $result])
+AC_DEFINE_UNQUOTED([MOZ_NSICONTENTPOLICY_VARIANT], [$variant], [Define the nsIContentPolicy API variant])
+
+AC_MSG_RESULT([variant $variant])
dnl Changed from char* to nsIURI* in 1.7.4 on 1.7 branch,
dnl in 1.8a3 on trunk and on aviary branch
diff --git a/embed/mozilla/EphyContentPolicy.cpp b/embed/mozilla/EphyContentPolicy.cpp
index 65b26b05b..35485ea7a 100644
--- a/embed/mozilla/EphyContentPolicy.cpp
+++ b/embed/mozilla/EphyContentPolicy.cpp
@@ -59,7 +59,7 @@ EphyContentPolicy::~EphyContentPolicy()
g_slist_free (mSafeProtocols);
}
-#ifdef MOZ_NSICONTENTPOLICY_VARIANT_2
+#if MOZ_NSICONTENTPOLICY_VARIANT == 2
NS_IMETHODIMP
EphyContentPolicy::ShouldLoad(PRUint32 aContentType,
nsIURI *aContentLocation,
@@ -158,4 +158,4 @@ NS_IMETHODIMP EphyContentPolicy::ShouldProcess(PRInt32 contentType,
*_retval = PR_TRUE;
return NS_OK;
}
-#endif /* MOZ_NSICONTENTPOLICY_VARIANT_2 || MOZ_NSICONTENTPOLICY_VARIANT_3 */
+#endif /* MOZ_NSICONTENTPOLICY_VARIANT == 2 */