After an evaluation, GNOME has moved from Bugzilla to GitLab. Learn more about GitLab.
No new issues can be reported in GNOME Bugzilla anymore.
To report an issue in a GNOME project, go to GNOME GitLab.
Do not go to GNOME Gitlab for: Bluefish, Doxygen, GnuCash, GStreamer, java-gnome, LDTP, NetworkManager, Tomboy.
Bug 503657 - xulrunner 1.9 support
xulrunner 1.9 support
Status: RESOLVED FIXED
Product: epiphany
Classification: Core
Component: Build
git master
Other Linux
: Normal enhancement
: ---
Assigned To: Epiphany Maintainers
Epiphany Maintainers
: 467812 (view as bug list)
Depends on:
Blocks: 504445
 
 
Reported: 2007-12-14 20:21 UTC by Alexander Sack
Modified: 2008-03-26 22:06 UTC
See Also:
GNOME target: ---
GNOME version: ---


Attachments
xul 1.9 patch ... get things started (35.40 KB, patch)
2007-12-14 20:22 UTC, Alexander Sack
none Details | Review
updated according to comments (34.45 KB, patch)
2007-12-14 21:42 UTC, Alexander Sack
reviewed Details | Review
updated patch against rev 7834 (22.88 KB, patch)
2008-01-02 12:52 UTC, Alexander Sack
none Details | Review
for xul trunk 080106 and later (18.69 KB, patch)
2008-01-07 15:23 UTC, Alexander Sack
none Details | Review

Description Alexander Sack 2007-12-14 20:21:19 UTC
now, the cleaned up patch for xulrunner 1.9

you can now pass:

 --with-gecko=libxul-embedding

or (if you don't want standalone glue)

 --with-gecko=libxul --with-gecko-home=$MOZILLA_FIVE_HOME_aka_RPATH


unfortunately the latter misses 2 symbols during configure, once that is sorted out the non XPCOM_GLUE build should work as well.

this patch also tries hard to keep 1.8 compatibility. I could build against ubuntu firefox and use it. HTTPS(CErtificates) appear to be broken, but nothing that should hold back this patch imo
Comment 1 Alexander Sack 2007-12-14 20:22:36 UTC
Created attachment 100976 [details] [review]
xul 1.9 patch ... get things started
Comment 2 Christian Persch 2007-12-14 20:54:24 UTC
I'll leave the configure/makefile changes for later.

-		rv = NS_NewGenericFactory(getter_AddRefs(componentFactory),
-					  &(sAppComps[i]));
-		if (NS_FAILED(rv) || !componentFactory)
+		componentFactory = do_CreateInstance(NS_GENERICFACTORY_CONTRACTID);

What's this for? NS_NewGenericFactory is available in xulrunner (it's even in a header in stable/).

+++ embed/mozilla/EphyBadCertRejector.h	(working copy)
@@ -18,6 +18,7 @@
  *  $Id$
  */
 
+#ifndef HAVE_GECKO_1_9

Remove it from the SOURCES in makefile, instead of commenting it out, and #ifdef it in the files where it is included.

+#ifndef HAVE_GECKO_1_9
+  nsCOMPtr<nsIDocShell> docShell = do_GetInterface (mWebBrowser);
+#else
+  nsCOMPtr<nsIDOMWindow> domWindow;
+  rv = mWebBrowser->GetContentDOMWindow (getter_AddRefs (domWindow));
   NS_ENSURE_SUCCESS (rv, rv);
 
+  nsCOMPtr<nsPIDOMWindow> window(do_QueryInterface(domWindow, &rv));
+  NS_ENSURE_SUCCESS (rv, rv);
+
+  nsCOMPtr<nsIDocShell> docShell (window->GetDocShell());
+#endif

What's this change doing? (Also, put the 1.9 case first, #ifdef instead of ifndef).

+#ifndef HAVE_GECKO_1_9
 NS_IMPL_THREADSAFE_ISUPPORTS5 (GtkNSSDialogs, 
+			       nsIBadCertListener,
+#else
+NS_IMPL_THREADSAFE_ISUPPORTS4 (GtkNSSDialogs, 
+#endif

#ifdef in macro expansion chokes some compilers.

+#include <glib.h>

Why? glib.h is already included transitively. (And inclusions belong at the top of the file.)
-	PRTime now = PR_Now();
+	GTimeVal timeval;
+	g_get_current_time(&timeval);
+	PRTime now = timeval.tv_sec * 1000 + timeval.tv_usec / 1000;

You want to avoid linking to NSPR, right? I don't see why though, we *must* link to NSPR due to the THREADSAFE_ISUPPORTS thing.

+++ embed/mozilla/mozilla-embed.cpp	(working copy)
+	GtkMozEmbed *moz_embed = MOZILLA_EMBED (embed)->priv->moz_embed;

What's this for?


+++ embed/mozilla/EphyAboutModule.cpp	(working copy)

These changes are wrong; you need to use nsINetUtil. And please remove the printf's.

+#ifndef HAVE_GECKO_1_9
 	return mdv->GetTextZoom (aZoom);
+#else
+	return mdv->GetFullZoom (aZoom);
+#endif

Not sure about this; text zoom != full zoom...

-#ifdef HAVE_GECKO_1_9
+#ifdef HAVE_GECKO_1_9_NOT_RELEASED
+  // XXX asac: example code that doesn't work

We can just #if 0 this for now.


Comment 3 Alexander Sack 2007-12-14 21:21:08 UTC
(In reply to comment #2)
> I'll leave the configure/makefile changes for later.
> 
> -               rv = NS_NewGenericFactory(getter_AddRefs(componentFactory),
> -                                         &(sAppComps[i]));
> -               if (NS_FAILED(rv) || !componentFactory)
> +               componentFactory =
> do_CreateInstance(NS_GENERICFACTORY_CONTRACTID);
> 
> What's this for? NS_NewGenericFactory is available in xulrunner (it's even in a
> header in stable/).

not available in frozen linkage as of 1.9 anymore (read: http://developer.mozilla.org/en/docs/Migrating_from_Internal_Linkage_to_Frozen_Linkage - Utility Classes)
> 
> +++ embed/mozilla/EphyBadCertRejector.h (working copy)

> 
> +#ifndef HAVE_GECKO_1_9
> +  nsCOMPtr<nsIDocShell> docShell = do_GetInterface (mWebBrowser);
> +#else
> +  nsCOMPtr<nsIDOMWindow> domWindow;
> +  rv = mWebBrowser->GetContentDOMWindow (getter_AddRefs (domWindow));
>    NS_ENSURE_SUCCESS (rv, rv);
> 
> +  nsCOMPtr<nsPIDOMWindow> window(do_QueryInterface(domWindow, &rv));
> +  NS_ENSURE_SUCCESS (rv, rv);
> +
> +  nsCOMPtr<nsIDocShell> docShell (window->GetDocShell());
> +#endif
> 
> What's this change doing? (Also, put the 1.9 case first, #ifdef instead of
> ifndef).

as discussed this appears to be a bug in xulrunner ... i can flip it for now and add a XXX comment to remember to go the straight way once its fixed ...

> 
> +#include <glib.h>
> 
> Why? glib.h is already included transitively. (And inclusions belong at the top
> of the file.)
> -       PRTime now = PR_Now();
> +       GTimeVal timeval;
> +       g_get_current_time(&timeval);
> +       PRTime now = timeval.tv_sec * 1000 + timeval.tv_usec / 1000;
> 
> You want to avoid linking to NSPR, right? I don't see why though, we *must*
> link to NSPR due to the THREADSAFE_ISUPPORTS thing.

sorry ... thats a left over ... i thought i removed all these ...

> 
> +++ embed/mozilla/mozilla-embed.cpp     (working copy)
> +       GtkMozEmbed *moz_embed = MOZILLA_EMBED (embed)->priv->moz_embed;
> 
> What's this for?

maybe a left over from debugging ... will look and remove if its not needed.

> 
> 
> +++ embed/mozilla/EphyAboutModule.cpp   (working copy)
> 
> These changes are wrong; you need to use nsINetUtil. And please remove the
> printf's.
> 
> +#ifndef HAVE_GECKO_1_9
>         return mdv->GetTextZoom (aZoom);
> +#else
> +       return mdv->GetFullZoom (aZoom);
> +#endif
> 
> Not sure about this; text zoom != full zoom...

yes ... text zoom zooms text ... full zoom zooms images as well. Firefox 3 now uses full zoom for mouse-wheel and ctrl++ and -

Comment 4 Alexander Sack 2007-12-14 21:42:06 UTC
Created attachment 100979 [details] [review]
updated according to comments
Comment 5 Christian Persch 2007-12-20 13:54:31 UTC
+#ifdef MOZILLA_INTERNAL_API
 #include <nsEscape.h>
+#endif

Move that up into the #ifndef HAVE_GECKO_1_9 please.

The patch is still wrong in EphyAboutModule, you need to unuscape using nsINetUtil for 1.9 and the old code for 1.8.

The 1.9 branch code in EphyDirectoryProvider.cpp should work for 1.8 too, so probably we don't need the ifdef here.

Assuming you've tested MozRegisterComponents.cpp on 1.8 too, that file is ok to commit to svn trunk.

GeckoPrintService.cpp is ok to commit to trunk.

GtkNSSDialogs.cpp and .h as well.

EphyUtils.cpp too.
EphyHeaderSniffer.cpp too.
MozDownload.cpp too.

Comment 6 Alexander Sack 2007-12-29 16:40:21 UTC
chpe, i don't have commit rights. I will update the patch and ask you to commit the files you found suitable.

What about the XPCOM_GLUE code? It doesn't hurt non-glue users, why not commit that?
Comment 7 Alexander Sack 2007-12-29 16:44:43 UTC
caillon, stransky: can you please test the patch and let me know which modifications are needed to fix the build system for fedora?
Comment 8 Christian Persch 2007-12-29 17:11:54 UTC
I've committed most of the good bits from this patch already to svn trunk.
Excepted are the configure changes; I don't like relying on distro specific pc files, and I don't think the XPCOM_GLUE bits are right either. We need to use the dependent glue, not the standalone glue.
Comment 9 Alexander Sack 2008-01-02 12:52:24 UTC
Created attachment 101986 [details] [review]
updated patch against rev 7834

This supports both GECKOs: |libxul| and |libxul-embedding| (both start and work)

... and it _doesn't_ depend on distro specific .pc files (never did). We soon will get libxul*-unstable.pc files, but i don't see a reason to wait for them as it would just be a tiny update.

(As found in discussion on irc with caillon the right way is to use -embedding in the long run, so please apply the XPCOM_GLUE bits to svn as well (they don't hurt anyway).)

libxul.pc doesn't provide a proper GECKO_HOME, so if you want to use libxul (with -rpath), just add --with-gecko-home=/path/to/your/fixed/gecko/pkglibdir to your configure options.

Caillon, Stransky: please try this on fedora and let me know if there is anything else you need to go ahead.
Comment 10 Christian Persch 2008-01-02 20:46:58 UTC
+NS_IMETHODIMP
+GtkNSSDialogs::DisplayProtectedAuth (nsIInterfaceRequestor *ctx,
+				     nsIProtectedAuthThread *runnable)
+{
+  return NS_OK;

NS_ERROR_NOT_IMPLEMENTED.

+++ embed/mozilla/EphyAboutModule.cpp	(working copy)
@@ -499,7 +499,7 @@
 	if (error.IsEmpty () || rawurl.IsEmpty () || url.IsEmpty()) return NS_ERROR_FAILURE;
 
 	nsCOMPtr<nsIURI> uri;
-	rv = NS_NewURI (getter_AddRefs (uri), url, charset.get());
+	rv = NS_NewURI (getter_AddRefs (uri), nsCString(spec), charset.get());

This change is wrong.

EphyBrowser changes are all code style only, please drop them. Except this bit:

+#ifdef HAVE_GECKO_1_9
+	return mdv->GetFullZoom (aZoom);
+#else
 	return mdv->GetTextZoom (aZoom);
+#endif

I don't agree that zoom should become FullZoom; TextZoom is what mouse wheel does and we should keep it.
Comment 11 Christopher Aillon 2008-01-03 00:33:47 UTC
Comment on attachment 101986 [details] [review]
updated patch against rev 7834

>Index: m4/gecko.m4

>+		elif $PKG_CONFIG --exist $lizard; then
>+			gecko_cv_gecko=$lizard
>+			break;

Typo.  --exists.  :-)
Comment 12 Christopher Aillon 2008-01-03 00:59:43 UTC
AM_CONDITIONAL([WITH_XULRUNNER_ENGINE],[test "$with_engine" = "xulrunner"])

Also, you need to patch the above line in configure.ac to work if libxul or libxul-embedding.pc is used.  --with-gecko=xulrunner seems to expect xulrunner-xpcom.pc?
Comment 13 Christopher Aillon 2008-01-03 01:04:25 UTC
(And possibly also fix the HAVE_XULRUNNER line above it?)
Comment 14 Christopher Aillon 2008-01-03 03:19:19 UTC
Okay, this builds for me with --with-gecko=libxul-embedding.  However, it doesn't if WITH_XULRUNNER_ENGINE is defined for me (using a xulrunner-xpcom.pc which is a copy of libxul-embedding.pc with the name changed in the .pc file) so there's some fleshing out needed still I guess.  It also doesn't build --with-gecko=libxul but that might be a different issue.
Comment 15 Christian Persch 2008-01-03 11:19:43 UTC
That's fine; WITH_XULRUNNER_ENGINE is only defined for the 'xulrunner' backend while this bug concerns the 'mozilla' backend.
Comment 16 Alexander Sack 2008-01-03 13:53:44 UTC
Caillon, what build error do you get with libxul?

did you add

  --with-gecko-home=/path/to/your/xul/pkglibdir= 

to configure?

Please post the config.log if it fails during configure
Comment 17 Christopher Aillon 2008-01-03 15:06:56 UTC
Adding --with-gecko-home makes it work.  Sorry I missed that step.  :-)
Comment 18 Martin Stransky 2008-01-04 08:44:38 UTC
It doesn't build with the latest xulrunner trunk (2008-01-03) - some symbols are missing:

/home/komat/CVS/epiphany/devel/epiphany-2.21.5/embed/mozilla/mozilla-embed-single.cpp:680:
undefined reference to `gtk_moz_embed_set_directory_service_provider'
/home/komat/CVS/epiphany/devel/epiphany-2.21.5/embed/mozilla/EphyBrowser.cpp:576:
undefined reference to `gtk_moz_embed_get_nsIWebBrowser'
/home/komat/CVS/epiphany/devel/epiphany-2.21.5/embed/mozilla/EphyFind.cpp:91:
undefined reference to `gtk_moz_embed_get_nsIWebBrowser'
Comment 19 Alexander Sack 2008-01-04 11:05:06 UTC
(In reply to comment #18)
> It doesn't build with the latest xulrunner trunk (2008-01-03) - some symbols
> are missing:
> 
> /home/komat/CVS/epiphany/devel/epiphany-2.21.5/embed/mozilla/mozilla-embed-single.cpp:680:
> undefined reference to `gtk_moz_embed_set_directory_service_provider'

yes, thats because of the recent microb backout. The patch for those symbols should land today. (mbo #373918)
Comment 20 Alexander Sack 2008-01-04 11:28:39 UTC
(In reply to comment #19)
> (In reply to comment #18)
> > It doesn't build with the latest xulrunner trunk (2008-01-03) - some symbols
> > are missing:
> > 
> > /home/komat/CVS/epiphany/devel/epiphany-2.21.5/embed/mozilla/mozilla-embed-single.cpp:680:
> > undefined reference to `gtk_moz_embed_set_directory_service_provider'
> 
> yes, thats because of the recent microb backout. The patch for those symbols
> should land today. (mbo #373918)
> 

once that patch has landed we need to explicitly load the internal symbols by adding:

+	rv = GTKEmbedGlueStartupInternal();

to the glue code.
Comment 21 Martin Stransky 2008-01-07 12:17:35 UTC
(In reply to comment #20)
> once that patch has landed we need to explicitly load the internal symbols by
> adding:
> 
> +       rv = GTKEmbedGlueStartupInternal();
> 
> to the glue code.
> 

Could you update the epiphany xulrunner patch?
Comment 22 Alexander Sack 2008-01-07 15:23:03 UTC
Created attachment 102329 [details] [review]
for xul trunk 080106 and later

1. updated to work with latest xulrunner trunk
2. make use of libxul*-unstable .pc files which are now shipped by xul install
3. update according to suggestions in comment 10 and comment 11
Comment 23 Kjartan Maraas 2008-01-23 11:38:27 UTC
Trying to build with this on current rawhide gives this:

 g++ -DHAVE_CONFIG_H -I. -I../.. -I../../lib -I../../embed -I../.. -I/usr/include/xulrunner-sdk-1.9pre/unstable/. -I/usr/include/xulrunner-sdk-1.9pre/unstable/caps -I/usr/include/xulrunner-sdk-1.9pre/unstable/chardet -I/usr/include/xulrunner-sdk-1.9pre/unstable/chrome -I/usr/include/xulrunner-sdk-1.9pre/unstable/commandhandler -I/usr/include/xulrunner-sdk-1.9pre/unstable/content -I/usr/include/xulrunner-sdk-1.9pre/unstable/cookie -I/usr/include/xulrunner-sdk-1.9pre/unstable/docshell -I/usr/include/xulrunner-sdk-1.9pre/unstable/dom -I/usr/include/xulrunner-sdk-1.9pre/unstable/exthandler -I/usr/include/xulrunner-sdk-1.9pre/unstable/fastfind -I/usr/include/xulrunner-sdk-1.9pre/unstable/helperAppDlg -I/usr/include/xulrunner-sdk-1.9pre/unstable/find -I/usr/include/xulrunner-sdk-1.9pre/unstable/gfx -I/usr/include/xulrunner-sdk-1.9pre/unstable/gtkembedmoz -I/usr/include/xulrunner-sdk-1.9pre/unstable/history -I/usr/include/xulrunner-sdk-1.9pre/unstable/js -I/usr/include/xulrunner-sdk-1.9pre/unstable/layout -I/usr/include/xulrunner-sdk-1.9pre/unstable/locale -I/usr/include/xulrunner-sdk-1.9pre/unstable/mimetype -I/usr/include/xulrunner-sdk-1.9pre/unstable/necko -I/usr/include/xulrunner-sdk-1.9pre/unstable/nkcache -I/usr/include/xulrunner-sdk-1.9pre/unstable/passwordmgr -I/usr/include/xulrunner-sdk-1.9pre/unstable/pipboot -I/usr/include/xulrunner-sdk-1.9pre/unstable/pipnss -I/usr/include/xulrunner-sdk-1.9pre/unstable/pref -I/usr/include/xulrunner-sdk-1.9pre/unstable/shistory -I/usr/include/xulrunner-sdk-1.9pre/unstable/string -I/usr/include/xulrunner-sdk-1.9pre/unstable/sidebar -I/usr/include/xulrunner-sdk-1.9pre/unstable/spellchecker -I/usr/include/xulrunner-sdk-1.9pre/unstable/uriloader -I/usr/include/xulrunner-sdk-1.9pre/unstable/uconv -I/usr/include/xulrunner-sdk-1.9pre/unstable/wallet -I/usr/include/xulrunner-sdk-1.9pre/unstable/webbrowserpersist -I/usr/include/xulrunner-sdk-1.9pre/unstable/webbrwsr -I/usr/include/xulrunner-sdk-1.9pre/unstable/widget -I/usr/include/xulrunner-sdk-1.9pre/unstable/windowwatcher -I/usr/include/xulrunner-sdk-1.9pre/unstable/xmlextras -I/usr/include/xulrunner-sdk-1.9pre/unstable/xpcom -I/usr/include/xulrunner-sdk-1.9pre/unstable/xpconnect -DSHARE_DIR=\"/opt/gnome2/share/epiphany\" -DPLUGINDIR=\"/opt/gnome2/lib/epiphany/2.21/plugins\" -DMOZILLA_HOME=\"\" -DMOZILLA_PREFIX=\"/usr\" -DMOZILLA_NATIVE_PLUGINSDIR=\"/opt/gnome2/lib/mozilla/plugins\" -DUA_VERSION=\"2.20\" -DALLOW_PRIVATE_API -DG_DISABLE_DEPRECATED -DGDK_DISABLE_DEPRECATED -DGDK_PIXBUF_DISABLE_DEPRECATED -DGCONF_DISABLE_DEPRECATED -DLIBGLADE_DISABLE_DEPRECATED -DPANGO_DISABLE_DEPRECATED -DGNOME_DISABLE_DEPRECATED -DGTK_DISABLE_DEPRECATED -DXPCOM_GLUE_USE_NSPR -g -O0 -D_FORTIFY_SOURCE=2 -DXPCOM_GLUE -fshort-wchar -I/usr/include/xulrunner-sdk-1.9pre/stable -DXPCOM_GLUE -fshort-wchar -I/usr/include/xulrunner-sdk-1.9pre/unstable -UDEBUG -I/usr/include/nspr4 -DORBIT2=1 -pthread -I/opt/gnome2/include/glib-2.0 -I/opt/gnome2/lib/glib-2.0/include -I/opt/gnome2/include/gio-unix-2.0/ -I/opt/gnome2/include/gtk-2.0 -I/opt/gnome2/lib/gtk-2.0/include -I/opt/gnome2/include/atk-1.0 -I/opt/gnome2/include/cairo -I/opt/gnome2/include/pango-1.0 -I/opt/gnome2/include/gtk-unix-print-2.0 -I/opt/gnome2/include/libxml2 -I/opt/gnome2/include -I/opt/gnome2/include/libgnome-2.0 -I/opt/gnome2/include/libbonobo-2.0 -I/opt/gnome2/include/orbit-2.0 -I/opt/gnome2/include/bonobo-activation-2.0 -I/opt/gnome2/include/libgnomeui-2.0 -I/opt/gnome2/include/libbonoboui-2.0 -I/opt/gnome2/include/libgnomecanvas-2.0 -I/opt/gnome2/include/gnome-vfs-2.0 -I/opt/gnome2/lib/gnome-vfs-2.0/include -I/opt/gnome2/include/libart-2.0 -I/opt/gnome2/include/gconf/2 -I/opt/gnome2/include/libglade-2.0 -I/opt/gnome2/include/gnome-desktop-2.0 -I/opt/gnome2/include/startup-notification-1.0 -I/opt/gnome2/include/dbus-1.0 -I/opt/gnome2/lib/dbus-1.0/include -fno-rtti -fshort-wchar -g -O2 -Wall -Wno-unused -Wall -Wconversion -Wpointer-arith -Wcast-align -Woverloaded-virtual -Wsynth -Wno-ctor-dtor-privacy -Wno-non-virtual-dtor -g -O2 -MT libephymozillaembed_la-EphyUtils.lo -MD -MP -MF .deps/libephymozillaembed_la-EphyUtils.Tpo -c EphyUtils.cpp  -fPIC -DPIC -o .libs/libephymozillaembed_la-EphyUtils.o
In file included from EphyUtils.cpp:26:
/usr/include/xulrunner-sdk-1.9pre/unstable/./gtkmozembed.h:57:1: warning: "NS_HIDDEN" redefined
In file included from /usr/include/xulrunner-sdk-1.9pre/unstable/./nsXPCOMStrings.h:42,
                 from /usr/include/xulrunner-sdk-1.9pre/unstable/./nsStringAPI.h:52,
                 from EphyUtils.cpp:24:
/usr/include/xulrunner-sdk-1.9pre/unstable/./nscore.h:117:1: warning: this is the location of the previous definition
In file included from EphyUtils.cpp:26:
/usr/include/xulrunner-sdk-1.9pre/unstable/./gtkmozembed.h:63:1: warning: "NS_EXPORT_" redefined
In file included from /usr/include/xulrunner-sdk-1.9pre/unstable/./nsXPCOMStrings.h:42,
                 from /usr/include/xulrunner-sdk-1.9pre/unstable/./nsStringAPI.h:52,
                 from EphyUtils.cpp:24:
/usr/include/xulrunner-sdk-1.9pre/unstable/./nscore.h:208:1: warning: this is the location of the previous definition
In file included from EphyUtils.cpp:26:
/usr/include/xulrunner-sdk-1.9pre/unstable/./gtkmozembed.h:64:1: warning: "NS_IMPORT_" redefined
In file included from /usr/include/xulrunner-sdk-1.9pre/unstable/./nsXPCOMStrings.h:42,
                 from /usr/include/xulrunner-sdk-1.9pre/unstable/./nsStringAPI.h:52,
                 from EphyUtils.cpp:24:
/usr/include/xulrunner-sdk-1.9pre/unstable/./nscore.h:206:1: warning: this is the location of the previous definition
/usr/include/xulrunner-sdk-1.9pre/unstable/./nsStringAPI.h: In function 'const nsDependentSubstring_external Substring(const nsAString&, PRUint32)':
/usr/include/xulrunner-sdk-1.9pre/unstable/./nsStringAPI.h:1175: warning: lowering visibility of 'const nsDependentSubstring_external Substring(const nsAString&, PRUint32)' to match its type
/usr/include/xulrunner-sdk-1.9pre/unstable/./nsStringAPI.h: In function 'const nsDependentSubstring_external Substring(const nsAString&, PRUint32, PRUint32)':
/usr/include/xulrunner-sdk-1.9pre/unstable/./nsStringAPI.h:1181: warning: lowering visibility of 'const nsDependentSubstring_external Substring(const nsAString&, PRUint32, PRUint32)' to match its type
/usr/include/xulrunner-sdk-1.9pre/unstable/./nsStringAPI.h: In function 'const nsDependentSubstring_external Substring(const PRUnichar*, const PRUnichar*)':
/usr/include/xulrunner-sdk-1.9pre/unstable/./nsStringAPI.h:1187: warning: lowering visibility of 'const nsDependentSubstring_external Substring(const PRUnichar*, const PRUnichar*)' to match its type
/usr/include/xulrunner-sdk-1.9pre/unstable/./nsStringAPI.h: In function 'const nsDependentSubstring_external Substring(const PRUnichar*, PRUint32)':
/usr/include/xulrunner-sdk-1.9pre/unstable/./nsStringAPI.h:1193: warning: lowering visibility of 'const nsDependentSubstring_external Substring(const PRUnichar*, PRUint32)' to match its type
/usr/include/xulrunner-sdk-1.9pre/unstable/./nsStringAPI.h: In function 'const nsDependentSubstring_external StringHead(const nsAString&, PRUint32)':
/usr/include/xulrunner-sdk-1.9pre/unstable/./nsStringAPI.h:1199: warning: lowering visibility of 'const nsDependentSubstring_external StringHead(const nsAString&, PRUint32)' to match its type
/usr/include/xulrunner-sdk-1.9pre/unstable/./nsStringAPI.h: In function 'const nsDependentSubstring_external StringTail(const nsAString&, PRUint32)':
/usr/include/xulrunner-sdk-1.9pre/unstable/./nsStringAPI.h:1205: warning: lowering visibility of 'const nsDependentSubstring_external StringTail(const nsAString&, PRUint32)' to match its type
/usr/include/xulrunner-sdk-1.9pre/unstable/./nsStringAPI.h: In function 'const nsDependentCSubstring_external Substring(const nsACString&, PRUint32)':
/usr/include/xulrunner-sdk-1.9pre/unstable/./nsStringAPI.h:1212: warning: lowering visibility of 'const nsDependentCSubstring_external Substring(const nsACString&, PRUint32)' to match its type
/usr/include/xulrunner-sdk-1.9pre/unstable/./nsStringAPI.h: In function 'const nsDependentCSubstring_external Substring(const nsACString&, PRUint32, PRUint32)':
/usr/include/xulrunner-sdk-1.9pre/unstable/./nsStringAPI.h:1218: warning: lowering visibility of 'const nsDependentCSubstring_external Substring(const nsACString&, PRUint32, PRUint32)' to match its type
/usr/include/xulrunner-sdk-1.9pre/unstable/./nsStringAPI.h: In function 'const nsDependentCSubstring_external Substring(const char*, const char*)':
/usr/include/xulrunner-sdk-1.9pre/unstable/./nsStringAPI.h:1225: warning: lowering visibility of 'const nsDependentCSubstring_external Substring(const char*, const char*)' to match its type
/usr/include/xulrunner-sdk-1.9pre/unstable/./nsStringAPI.h: In function 'const nsDependentCSubstring_external Substring(const char*, PRUint32)':
/usr/include/xulrunner-sdk-1.9pre/unstable/./nsStringAPI.h:1232: warning: lowering visibility of 'const nsDependentCSubstring_external Substring(const char*, PRUint32)' to match its type
/usr/include/xulrunner-sdk-1.9pre/unstable/./nsStringAPI.h: In function 'const nsDependentCSubstring_external StringHead(const nsACString&, PRUint32)':
/usr/include/xulrunner-sdk-1.9pre/unstable/./nsStringAPI.h:1238: warning: lowering visibility of 'const nsDependentCSubstring_external StringHead(const nsACString&, PRUint32)' to match its type
/usr/include/xulrunner-sdk-1.9pre/unstable/./nsStringAPI.h: In function 'const nsDependentCSubstring_external StringTail(const nsACString&, PRUint32)':
/usr/include/xulrunner-sdk-1.9pre/unstable/./nsStringAPI.h:1244: warning: lowering visibility of 'const nsDependentCSubstring_external StringTail(const nsACString&, PRUint32)' to match its type
/usr/include/xulrunner-sdk-1.9pre/unstable/./nsCOMPtr.h: In function 'nsQueryInterface do_QueryInterface(nsISupports*)':
/usr/include/xulrunner-sdk-1.9pre/unstable/./nsCOMPtr.h:379: warning: lowering visibility of 'nsQueryInterface do_QueryInterface(nsISupports*)' to match its type
/usr/include/xulrunner-sdk-1.9pre/unstable/./nsCOMPtr.h: In function 'nsQueryInterfaceWithError do_QueryInterface(nsISupports*, nsresult*)':
/usr/include/xulrunner-sdk-1.9pre/unstable/./nsCOMPtr.h:386: warning: lowering visibility of 'nsQueryInterfaceWithError do_QueryInterface(nsISupports*, nsresult*)' to match its type
/usr/include/xulrunner-sdk-1.9pre/unstable/./nsCOMPtr.h: In constructor 'nsCOMPtr<T>::nsCOMPtr(nsQueryInterface)':
/usr/include/xulrunner-sdk-1.9pre/unstable/./nsCOMPtr.h:640: warning: lowering visibility of 'nsCOMPtr<T>::nsCOMPtr(nsQueryInterface)' to match its type
/usr/include/xulrunner-sdk-1.9pre/unstable/./nsCOMPtr.h: In constructor 'nsCOMPtr<T>::nsCOMPtr(const nsQueryInterfaceWithError&)':
/usr/include/xulrunner-sdk-1.9pre/unstable/./nsCOMPtr.h:648: warning: lowering visibility of 'nsCOMPtr<T>::nsCOMPtr(const nsQueryInterfaceWithError&)' to match its type
/usr/include/xulrunner-sdk-1.9pre/unstable/./nsCOMPtr.h: In constructor 'nsCOMPtr<T>::nsCOMPtr(nsGetServiceByCID)':
/usr/include/xulrunner-sdk-1.9pre/unstable/./nsCOMPtr.h:656: warning: lowering visibility of 'nsCOMPtr<T>::nsCOMPtr(nsGetServiceByCID)' to match its type
/usr/include/xulrunner-sdk-1.9pre/unstable/./nsCOMPtr.h: In constructor 'nsCOMPtr<T>::nsCOMPtr(const nsGetServiceByCIDWithError&)':
/usr/include/xulrunner-sdk-1.9pre/unstable/./nsCOMPtr.h:664: warning: lowering visibility of 'nsCOMPtr<T>::nsCOMPtr(const nsGetServiceByCIDWithError&)' to match its type
/usr/include/xulrunner-sdk-1.9pre/unstable/./nsCOMPtr.h: In constructor 'nsCOMPtr<T>::nsCOMPtr(nsGetServiceByContractID)':
/usr/include/xulrunner-sdk-1.9pre/unstable/./nsCOMPtr.h:672: warning: lowering visibility of 'nsCOMPtr<T>::nsCOMPtr(nsGetServiceByContractID)' to match its type
/usr/include/xulrunner-sdk-1.9pre/unstable/./nsCOMPtr.h: In constructor 'nsCOMPtr<T>::nsCOMPtr(const nsGetServiceByContractIDWithError&)':
/usr/include/xulrunner-sdk-1.9pre/unstable/./nsCOMPtr.h:680: warning: lowering visibility of 'nsCOMPtr<T>::nsCOMPtr(const nsGetServiceByContractIDWithError&)' to match its type
/usr/include/xulrunner-sdk-1.9pre/unstable/./nsCOMPtr.h: In member function 'nsCOMPtr<T>& nsCOMPtr<T>::operator=(nsQueryInterface)':
/usr/include/xulrunner-sdk-1.9pre/unstable/./nsCOMPtr.h:728: warning: lowering visibility of 'nsCOMPtr<T>& nsCOMPtr<T>::operator=(nsQueryInterface)' to match its type
/usr/include/xulrunner-sdk-1.9pre/unstable/./nsCOMPtr.h: In member function 'nsCOMPtr<T>& nsCOMPtr<T>::operator=(const nsQueryInterfaceWithError&)':
/usr/include/xulrunner-sdk-1.9pre/unstable/./nsCOMPtr.h:736: warning: lowering visibility of 'nsCOMPtr<T>& nsCOMPtr<T>::operator=(const nsQueryInterfaceWithError&)' to match its type
/usr/include/xulrunner-sdk-1.9pre/unstable/./nsCOMPtr.h: In member function 'nsCOMPtr<T>& nsCOMPtr<T>::operator=(nsGetServiceByCID)':
/usr/include/xulrunner-sdk-1.9pre/unstable/./nsCOMPtr.h:744: warning: lowering visibility of 'nsCOMPtr<T>& nsCOMPtr<T>::operator=(nsGetServiceByCID)' to match its type
/usr/include/xulrunner-sdk-1.9pre/unstable/./nsCOMPtr.h: In member function 'nsCOMPtr<T>& nsCOMPtr<T>::operator=(const nsGetServiceByCIDWithError&)':
/usr/include/xulrunner-sdk-1.9pre/unstable/./nsCOMPtr.h:752: warning: lowering visibility of 'nsCOMPtr<T>& nsCOMPtr<T>::operator=(const nsGetServiceByCIDWithError&)' to match its type
/usr/include/xulrunner-sdk-1.9pre/unstable/./nsCOMPtr.h: In member function 'nsCOMPtr<T>& nsCOMPtr<T>::operator=(nsGetServiceByContractID)':
/usr/include/xulrunner-sdk-1.9pre/unstable/./nsCOMPtr.h:760: warning: lowering visibility of 'nsCOMPtr<T>& nsCOMPtr<T>::operator=(nsGetServiceByContractID)' to match its type
/usr/include/xulrunner-sdk-1.9pre/unstable/./nsCOMPtr.h: In member function 'nsCOMPtr<T>& nsCOMPtr<T>::operator=(const nsGetServiceByContractIDWithError&)':
/usr/include/xulrunner-sdk-1.9pre/unstable/./nsCOMPtr.h:768: warning: lowering visibility of 'nsCOMPtr<T>& nsCOMPtr<T>::operator=(const nsGetServiceByContractIDWithError&)' to match its type
/usr/include/xulrunner-sdk-1.9pre/unstable/./nsCOMPtr.h: At global scope:
/usr/include/xulrunner-sdk-1.9pre/unstable/./nsCOMPtr.h:988: warning: lowering visibility of 'nsCOMPtr<nsISupports>::nsCOMPtr(nsQueryInterface)' to match its type
/usr/include/xulrunner-sdk-1.9pre/unstable/./nsCOMPtr.h:996: warning: lowering visibility of 'nsCOMPtr<nsISupports>::nsCOMPtr(const nsQueryInterfaceWithError&)' to match its type
/usr/include/xulrunner-sdk-1.9pre/unstable/./nsCOMPtr.h:1004: warning: lowering visibility of 'nsCOMPtr<nsISupports>::nsCOMPtr(nsGetServiceByCID)' to match its type
/usr/include/xulrunner-sdk-1.9pre/unstable/./nsCOMPtr.h:1012: warning: lowering visibility of 'nsCOMPtr<nsISupports>::nsCOMPtr(const nsGetServiceByCIDWithError&)' to match its type
/usr/include/xulrunner-sdk-1.9pre/unstable/./nsCOMPtr.h:1020: warning: lowering visibility of 'nsCOMPtr<nsISupports>::nsCOMPtr(nsGetServiceByContractID)' to match its type
/usr/include/xulrunner-sdk-1.9pre/unstable/./nsCOMPtr.h:1028: warning: lowering visibility of 'nsCOMPtr<nsISupports>::nsCOMPtr(const nsGetServiceByContractIDWithError&)' to match its type
/usr/include/xulrunner-sdk-1.9pre/unstable/./nsCOMPtr.h:1073: warning: lowering visibility of 'nsCOMPtr<nsISupports>& nsCOMPtr<nsISupports>::operator=(nsQueryInterface)' to match its type
/usr/include/xulrunner-sdk-1.9pre/unstable/./nsCOMPtr.h:1081: warning: lowering visibility of 'nsCOMPtr<nsISupports>& nsCOMPtr<nsISupports>::operator=(const nsQueryInterfaceWithError&)' to match its type
/usr/include/xulrunner-sdk-1.9pre/unstable/./nsCOMPtr.h:1089: warning: lowering visibility of 'nsCOMPtr<nsISupports>& nsCOMPtr<nsISupports>::operator=(nsGetServiceByCID)' to match its type
/usr/include/xulrunner-sdk-1.9pre/unstable/./nsCOMPtr.h:1097: warning: lowering visibility of 'nsCOMPtr<nsISupports>& nsCOMPtr<nsISupports>::operator=(const nsGetServiceByCIDWithError&)' to match its type
/usr/include/xulrunner-sdk-1.9pre/unstable/./nsCOMPtr.h:1105: warning: lowering visibility of 'nsCOMPtr<nsISupports>& nsCOMPtr<nsISupports>::operator=(nsGetServiceByContractID)' to match its type
/usr/include/xulrunner-sdk-1.9pre/unstable/./nsCOMPtr.h:1113: warning: lowering visibility of 'nsCOMPtr<nsISupports>& nsCOMPtr<nsISupports>::operator=(const nsGetServiceByContractIDWithError&)' to match its type
/usr/include/xulrunner-sdk-1.9pre/unstable/./nsCOMPtr.h: In constructor 'nsCOMPtr<nsISupports>::nsCOMPtr(nsQueryInterface)':
/usr/include/xulrunner-sdk-1.9pre/unstable/./nsCOMPtr.h:988: warning: lowering visibility of 'nsCOMPtr<nsISupports>::nsCOMPtr(nsQueryInterface)' to match its type
/usr/include/xulrunner-sdk-1.9pre/unstable/./nsCOMPtr.h: In constructor 'nsCOMPtr<nsISupports>::nsCOMPtr(const nsQueryInterfaceWithError&)':
/usr/include/xulrunner-sdk-1.9pre/unstable/./nsCOMPtr.h:996: warning: lowering visibility of 'nsCOMPtr<nsISupports>::nsCOMPtr(const nsQueryInterfaceWithError&)' to match its type
/usr/include/xulrunner-sdk-1.9pre/unstable/./nsCOMPtr.h: In constructor 'nsCOMPtr<nsISupports>::nsCOMPtr(nsGetServiceByCID)':
/usr/include/xulrunner-sdk-1.9pre/unstable/./nsCOMPtr.h:1004: warning: lowering visibility of 'nsCOMPtr<nsISupports>::nsCOMPtr(nsGetServiceByCID)' to match its type
/usr/include/xulrunner-sdk-1.9pre/unstable/./nsCOMPtr.h: In constructor 'nsCOMPtr<nsISupports>::nsCOMPtr(const nsGetServiceByCIDWithError&)':
/usr/include/xulrunner-sdk-1.9pre/unstable/./nsCOMPtr.h:1012: warning: lowering visibility of 'nsCOMPtr<nsISupports>::nsCOMPtr(const nsGetServiceByCIDWithError&)' to match its type
/usr/include/xulrunner-sdk-1.9pre/unstable/./nsCOMPtr.h: In constructor 'nsCOMPtr<nsISupports>::nsCOMPtr(nsGetServiceByContractID)':
/usr/include/xulrunner-sdk-1.9pre/unstable/./nsCOMPtr.h:1020: warning: lowering visibility of 'nsCOMPtr<nsISupports>::nsCOMPtr(nsGetServiceByContractID)' to match its type
/usr/include/xulrunner-sdk-1.9pre/unstable/./nsCOMPtr.h: In constructor 'nsCOMPtr<nsISupports>::nsCOMPtr(const nsGetServiceByContractIDWithError&)':
/usr/include/xulrunner-sdk-1.9pre/unstable/./nsCOMPtr.h:1028: warning: lowering visibility of 'nsCOMPtr<nsISupports>::nsCOMPtr(const nsGetServiceByContractIDWithError&)' to match its type
/usr/include/xulrunner-sdk-1.9pre/unstable/./nsCOMPtr.h: In member function 'nsCOMPtr<nsISupports>& nsCOMPtr<nsISupports>::operator=(nsQueryInterface)':
/usr/include/xulrunner-sdk-1.9pre/unstable/./nsCOMPtr.h:1073: warning: lowering visibility of 'nsCOMPtr<nsISupports>& nsCOMPtr<nsISupports>::operator=(nsQueryInterface)' to match its type
/usr/include/xulrunner-sdk-1.9pre/unstable/./nsCOMPtr.h: In member function 'nsCOMPtr<nsISupports>& nsCOMPtr<nsISupports>::operator=(const nsQueryInterfaceWithError&)':
/usr/include/xulrunner-sdk-1.9pre/unstable/./nsCOMPtr.h:1081: warning: lowering visibility of 'nsCOMPtr<nsISupports>& nsCOMPtr<nsISupports>::operator=(const nsQueryInterfaceWithError&)' to match its type
/usr/include/xulrunner-sdk-1.9pre/unstable/./nsCOMPtr.h: In member function 'nsCOMPtr<nsISupports>& nsCOMPtr<nsISupports>::operator=(nsGetServiceByCID)':
/usr/include/xulrunner-sdk-1.9pre/unstable/./nsCOMPtr.h:1089: warning: lowering visibility of 'nsCOMPtr<nsISupports>& nsCOMPtr<nsISupports>::operator=(nsGetServiceByCID)' to match its type
/usr/include/xulrunner-sdk-1.9pre/unstable/./nsCOMPtr.h: In member function 'nsCOMPtr<nsISupports>& nsCOMPtr<nsISupports>::operator=(const nsGetServiceByCIDWithError&)':
/usr/include/xulrunner-sdk-1.9pre/unstable/./nsCOMPtr.h:1097: warning: lowering visibility of 'nsCOMPtr<nsISupports>& nsCOMPtr<nsISupports>::operator=(const nsGetServiceByCIDWithError&)' to match its type
/usr/include/xulrunner-sdk-1.9pre/unstable/./nsCOMPtr.h: In member function 'nsCOMPtr<nsISupports>& nsCOMPtr<nsISupports>::operator=(nsGetServiceByContractID)':
/usr/include/xulrunner-sdk-1.9pre/unstable/./nsCOMPtr.h:1105: warning: lowering visibility of 'nsCOMPtr<nsISupports>& nsCOMPtr<nsISupports>::operator=(nsGetServiceByContractID)' to match its type
/usr/include/xulrunner-sdk-1.9pre/unstable/./nsCOMPtr.h: In member function 'nsCOMPtr<nsISupports>& nsCOMPtr<nsISupports>::operator=(const nsGetServiceByContractIDWithError&)':
/usr/include/xulrunner-sdk-1.9pre/unstable/./nsCOMPtr.h:1113: warning: lowering visibility of 'nsCOMPtr<nsISupports>& nsCOMPtr<nsISupports>::operator=(const nsGetServiceByContractIDWithError&)' to match its type
/usr/include/xulrunner-sdk-1.9pre/unstable/./xptinfo.h: In member function 'const nsXPTCMiniVariant* nsXPTConstant::GetValue() const':
/usr/include/xulrunner-sdk-1.9pre/unstable/./xptinfo.h:221: warning: type-punning to incomplete type might break strict-aliasing rules
/usr/include/xulrunner-sdk-1.9pre/unstable/./nsIXPConnect.h: In function 'const nsQueryInterface do_QueryWrappedNative(nsIXPConnectWrappedNative*)':
/usr/include/xulrunner-sdk-1.9pre/unstable/./nsIXPConnect.h:386: warning: lowering visibility of 'const nsQueryInterface do_QueryWrappedNative(nsIXPConnectWrappedNative*)' to match its type
/usr/include/xulrunner-sdk-1.9pre/unstable/./nsIXPConnect.h: In function 'const nsQueryInterfaceWithError do_QueryWrappedNative(nsIXPConnectWrappedNative*, nsresult*)':
/usr/include/xulrunner-sdk-1.9pre/unstable/./nsIXPConnect.h:393: warning: lowering visibility of 'const nsQueryInterfaceWithError do_QueryWrappedNative(nsIXPConnectWrappedNative*, nsresult*)' to match its type
/usr/include/xulrunner-sdk-1.9pre/unstable/./nsServiceManagerUtils.h: In function 'const nsGetServiceByCID do_GetService(const nsCID&)':
/usr/include/xulrunner-sdk-1.9pre/unstable/./nsServiceManagerUtils.h:46: warning: lowering visibility of 'const nsGetServiceByCID do_GetService(const nsCID&)' to match its type
/usr/include/xulrunner-sdk-1.9pre/unstable/./nsServiceManagerUtils.h: In function 'const nsGetServiceByCIDWithError do_GetService(const nsCID&, nsresult*)':
/usr/include/xulrunner-sdk-1.9pre/unstable/./nsServiceManagerUtils.h:53: warning: lowering visibility of 'const nsGetServiceByCIDWithError do_GetService(const nsCID&, nsresult*)' to match its type
/usr/include/xulrunner-sdk-1.9pre/unstable/./nsServiceManagerUtils.h: In function 'const nsGetServiceByContractID do_GetService(const char*)':
/usr/include/xulrunner-sdk-1.9pre/unstable/./nsServiceManagerUtils.h:60: warning: lowering visibility of 'const nsGetServiceByContractID do_GetService(const char*)' to match its type
/usr/include/xulrunner-sdk-1.9pre/unstable/./nsServiceManagerUtils.h: In function 'const nsGetServiceByContractIDWithError do_GetService(const char*, nsresult*)':
/usr/include/xulrunner-sdk-1.9pre/unstable/./nsServiceManagerUtils.h:67: warning: lowering visibility of 'const nsGetServiceByContractIDWithError do_GetService(const char*, nsresult*)' to match its type
/usr/include/xulrunner-sdk-1.9pre/unstable/./nsCOMPtr.h: At global scope:
/usr/include/xulrunner-sdk-1.9pre/unstable/./nsCOMPtr.h: In instantiation of 'nsCOMPtr<nsPIDOMEventTarget>':
/usr/include/xulrunner-sdk-1.9pre/unstable/./nsPIDOMWindow.h:399:   instantiated from here
/usr/include/xulrunner-sdk-1.9pre/unstable/./nsCOMPtr.h:640: warning: lowering visibility of 'nsCOMPtr<T>::nsCOMPtr(nsQueryInterface) [with T = nsPIDOMEventTarget]' to match its type
/usr/include/xulrunner-sdk-1.9pre/unstable/./nsCOMPtr.h:648: warning: lowering visibility of 'nsCOMPtr<T>::nsCOMPtr(const nsQueryInterfaceWithError&) [with T = nsPIDOMEventTarget]' to match its type
/usr/include/xulrunner-sdk-1.9pre/unstable/./nsCOMPtr.h:656: warning: lowering visibility of 'nsCOMPtr<T>::nsCOMPtr(nsGetServiceByCID) [with T = nsPIDOMEventTarget]' to match its type
/usr/include/xulrunner-sdk-1.9pre/unstable/./nsCOMPtr.h:664: warning: lowering visibility of 'nsCOMPtr<T>::nsCOMPtr(const nsGetServiceByCIDWithError&) [with T = nsPIDOMEventTarget]' to match its type
/usr/include/xulrunner-sdk-1.9pre/unstable/./nsCOMPtr.h:672: warning: lowering visibility of 'nsCOMPtr<T>::nsCOMPtr(nsGetServiceByContractID) [with T = nsPIDOMEventTarget]' to match its type
/usr/include/xulrunner-sdk-1.9pre/unstable/./nsCOMPtr.h:680: warning: lowering visibility of 'nsCOMPtr<T>::nsCOMPtr(const nsGetServiceByContractIDWithError&) [with T = nsPIDOMEventTarget]' to match its type
/usr/include/xulrunner-sdk-1.9pre/unstable/./nsCOMPtr.h:728: warning: lowering visibility of 'nsCOMPtr<T>& nsCOMPtr<T>::operator=(nsQueryInterface) [with T = nsPIDOMEventTarget]' to match its type
/usr/include/xulrunner-sdk-1.9pre/unstable/./nsCOMPtr.h:736: warning: lowering visibility of 'nsCOMPtr<T>& nsCOMPtr<T>::operator=(const nsQueryInterfaceWithError&) [with T = nsPIDOMEventTarget]' to match its type
/usr/include/xulrunner-sdk-1.9pre/unstable/./nsCOMPtr.h:744: warning: lowering visibility of 'nsCOMPtr<T>& nsCOMPtr<T>::operator=(nsGetServiceByCID) [with T = nsPIDOMEventTarget]' to match its type
/usr/include/xulrunner-sdk-1.9pre/unstable/./nsCOMPtr.h:752: warning: lowering visibility of 'nsCOMPtr<T>& nsCOMPtr<T>::operator=(const nsGetServiceByCIDWithError&) [with T = nsPIDOMEventTarget]' to match its type
/usr/include/xulrunner-sdk-1.9pre/unstable/./nsCOMPtr.h:760: warning: lowering visibility of 'nsCOMPtr<T>& nsCOMPtr<T>::operator=(nsGetServiceByContractID) [with T = nsPIDOMEventTarget]' to match its type
/usr/include/xulrunner-sdk-1.9pre/unstable/./nsCOMPtr.h:768: warning: lowering visibility of 'nsCOMPtr<T>& nsCOMPtr<T>::operator=(const nsGetServiceByContractIDWithError&) [with T = nsPIDOMEventTarget]' to match its type
/usr/include/xulrunner-sdk-1.9pre/unstable/./nsCOMPtr.h: In instantiation of 'nsCOMPtr<nsIDOMDocument>':
/usr/include/xulrunner-sdk-1.9pre/unstable/./nsPIDOMWindow.h:400:   instantiated from here
/usr/include/xulrunner-sdk-1.9pre/unstable/./nsCOMPtr.h:640: warning: lowering visibility of 'nsCOMPtr<T>::nsCOMPtr(nsQueryInterface) [with T = nsIDOMDocument]' to match its type
/usr/include/xulrunner-sdk-1.9pre/unstable/./nsCOMPtr.h:648: warning: lowering visibility of 'nsCOMPtr<T>::nsCOMPtr(const nsQueryInterfaceWithError&) [with T = nsIDOMDocument]' to match its type
/usr/include/xulrunner-sdk-1.9pre/unstable/./nsCOMPtr.h:656: warning: lowering visibility of 'nsCOMPtr<T>::nsCOMPtr(nsGetServiceByCID) [with T = nsIDOMDocument]' to match its type
/usr/include/xulrunner-sdk-1.9pre/unstable/./nsCOMPtr.h:664: warning: lowering visibility of 'nsCOMPtr<T>::nsCOMPtr(const nsGetServiceByCIDWithError&) [with T = nsIDOMDocument]' to match its type
/usr/include/xulrunner-sdk-1.9pre/unstable/./nsCOMPtr.h:672: warning: lowering visibility of 'nsCOMPtr<T>::nsCOMPtr(nsGetServiceByContractID) [with T = nsIDOMDocument]' to match its type
/usr/include/xulrunner-sdk-1.9pre/unstable/./nsCOMPtr.h:680: warning: lowering visibility of 'nsCOMPtr<T>::nsCOMPtr(const nsGetServiceByContractIDWithError&) [with T = nsIDOMDocument]' to match its type
/usr/include/xulrunner-sdk-1.9pre/unstable/./nsCOMPtr.h:728: warning: lowering visibility of 'nsCOMPtr<T>& nsCOMPtr<T>::operator=(nsQueryInterface) [with T = nsIDOMDocument]' to match its type
/usr/include/xulrunner-sdk-1.9pre/unstable/./nsCOMPtr.h:736: warning: lowering visibility of 'nsCOMPtr<T>& nsCOMPtr<T>::operator=(const nsQueryInterfaceWithError&) [with T = nsIDOMDocument]' to match its type
/usr/include/xulrunner-sdk-1.9pre/unstable/./nsCOMPtr.h:744: warning: lowering visibility of 'nsCOMPtr<T>& nsCOMPtr<T>::operator=(nsGetServiceByCID) [with T = nsIDOMDocument]' to match its type
/usr/include/xulrunner-sdk-1.9pre/unstable/./nsCOMPtr.h:752: warning: lowering visibility of 'nsCOMPtr<T>& nsCOMPtr<T>::operator=(const nsGetServiceByCIDWithError&) [with T = nsIDOMDocument]' to match its type
/usr/include/xulrunner-sdk-1.9pre/unstable/./nsCOMPtr.h:760: warning: lowering visibility of 'nsCOMPtr<T>& nsCOMPtr<T>::operator=(nsGetServiceByContractID) [with T = nsIDOMDocument]' to match its type
/usr/include/xulrunner-sdk-1.9pre/unstable/./nsCOMPtr.h:768: warning: lowering visibility of 'nsCOMPtr<T>& nsCOMPtr<T>::operator=(const nsGetServiceByContractIDWithError&) [with T = nsIDOMDocument]' to match its type
/usr/include/xulrunner-sdk-1.9pre/unstable/./nsCOMPtr.h: In instantiation of 'nsCOMPtr<nsPIDOMWindow>':
/usr/include/xulrunner-sdk-1.9pre/unstable/./nsPIDOMWindow.h:479:   instantiated from here
/usr/include/xulrunner-sdk-1.9pre/unstable/./nsCOMPtr.h:640: warning: lowering visibility of 'nsCOMPtr<T>::nsCOMPtr(nsQueryInterface) [with T = nsPIDOMWindow]' to match its type
/usr/include/xulrunner-sdk-1.9pre/unstable/./nsCOMPtr.h:648: warning: lowering visibility of 'nsCOMPtr<T>::nsCOMPtr(const nsQueryInterfaceWithError&) [with T = nsPIDOMWindow]' to match its type
/usr/include/xulrunner-sdk-1.9pre/unstable/./nsCOMPtr.h:656: warning: lowering visibility of 'nsCOMPtr<T>::nsCOMPtr(nsGetServiceByCID) [with T = nsPIDOMWindow]' to match its type
/usr/include/xulrunner-sdk-1.9pre/unstable/./nsCOMPtr.h:664: warning: lowering visibility of 'nsCOMPtr<T>::nsCOMPtr(const nsGetServiceByCIDWithError&) [with T = nsPIDOMWindow]' to match its type
/usr/include/xulrunner-sdk-1.9pre/unstable/./nsCOMPtr.h:672: warning: lowering visibility of 'nsCOMPtr<T>::nsCOMPtr(nsGetServiceByContractID) [with T = nsPIDOMWindow]' to match its type
/usr/include/xulrunner-sdk-1.9pre/unstable/./nsCOMPtr.h:680: warning: lowering visibility of 'nsCOMPtr<T>::nsCOMPtr(const nsGetServiceByContractIDWithError&) [with T = nsPIDOMWindow]' to match its type
/usr/include/xulrunner-sdk-1.9pre/unstable/./nsCOMPtr.h:728: warning: lowering visibility of 'nsCOMPtr<T>& nsCOMPtr<T>::operator=(nsQueryInterface) [with T = nsPIDOMWindow]' to match its type
/usr/include/xulrunner-sdk-1.9pre/unstable/./nsCOMPtr.h:736: warning: lowering visibility of 'nsCOMPtr<T>& nsCOMPtr<T>::operator=(const nsQueryInterfaceWithError&) [with T = nsPIDOMWindow]' to match its type
/usr/include/xulrunner-sdk-1.9pre/unstable/./nsCOMPtr.h:744: warning: lowering visibility of 'nsCOMPtr<T>& nsCOMPtr<T>::operator=(nsGetServiceByCID) [with T = nsPIDOMWindow]' to match its type
/usr/include/xulrunner-sdk-1.9pre/unstable/./nsCOMPtr.h:752: warning: lowering visibility of 'nsCOMPtr<T>& nsCOMPtr<T>::operator=(const nsGetServiceByCIDWithError&) [with T = nsPIDOMWindow]' to match its type
/usr/include/xulrunner-sdk-1.9pre/unstable/./nsCOMPtr.h:760: warning: lowering visibility of 'nsCOMPtr<T>& nsCOMPtr<T>::operator=(nsGetServiceByContractID) [with T = nsPIDOMWindow]' to match its type
/usr/include/xulrunner-sdk-1.9pre/unstable/./nsCOMPtr.h:768: warning: lowering visibility of 'nsCOMPtr<T>& nsCOMPtr<T>::operator=(const nsGetServiceByContractIDWithError&) [with T = nsPIDOMWindow]' to match its type
/usr/include/xulrunner-sdk-1.9pre/unstable/./nsCOMPtr.h: In instantiation of 'nsCOMPtr<nsIServiceManager>':
EphyUtils.cpp:57:   instantiated from here
/usr/include/xulrunner-sdk-1.9pre/unstable/./nsCOMPtr.h:640: warning: lowering visibility of 'nsCOMPtr<T>::nsCOMPtr(nsQueryInterface) [with T = nsIServiceManager]' to match its type
/usr/include/xulrunner-sdk-1.9pre/unstable/./nsCOMPtr.h:648: warning: lowering visibility of 'nsCOMPtr<T>::nsCOMPtr(const nsQueryInterfaceWithError&) [with T = nsIServiceManager]' to match its type
/usr/include/xulrunner-sdk-1.9pre/unstable/./nsCOMPtr.h:656: warning: lowering visibility of 'nsCOMPtr<T>::nsCOMPtr(nsGetServiceByCID) [with T = nsIServiceManager]' to match its type
/usr/include/xulrunner-sdk-1.9pre/unstable/./nsCOMPtr.h:664: warning: lowering visibility of 'nsCOMPtr<T>::nsCOMPtr(const nsGetServiceByCIDWithError&) [with T = nsIServiceManager]' to match its type
/usr/include/xulrunner-sdk-1.9pre/unstable/./nsCOMPtr.h:672: warning: lowering visibility of 'nsCOMPtr<T>::nsCOMPtr(nsGetServiceByContractID) [with T = nsIServiceManager]' to match its type
/usr/include/xulrunner-sdk-1.9pre/unstable/./nsCOMPtr.h:680: warning: lowering visibility of 'nsCOMPtr<T>::nsCOMPtr(const nsGetServiceByContractIDWithError&) [with T = nsIServiceManager]' to match its type
/usr/include/xulrunner-sdk-1.9pre/unstable/./nsCOMPtr.h:728: warning: lowering visibility of 'nsCOMPtr<T>& nsCOMPtr<T>::operator=(nsQueryInterface) [with T = nsIServiceManager]' to match its type
/usr/include/xulrunner-sdk-1.9pre/unstable/./nsCOMPtr.h:736: warning: lowering visibility of 'nsCOMPtr<T>& nsCOMPtr<T>::operator=(const nsQueryInterfaceWithError&) [with T = nsIServiceManager]' to match its type
/usr/include/xulrunner-sdk-1.9pre/unstable/./nsCOMPtr.h:744: warning: lowering visibility of 'nsCOMPtr<T>& nsCOMPtr<T>::operator=(nsGetServiceByCID) [with T = nsIServiceManager]' to match its type
/usr/include/xulrunner-sdk-1.9pre/unstable/./nsCOMPtr.h:752: warning: lowering visibility of 'nsCOMPtr<T>& nsCOMPtr<T>::operator=(const nsGetServiceByCIDWithError&) [with T = nsIServiceManager]' to match its type
/usr/include/xulrunner-sdk-1.9pre/unstable/./nsCOMPtr.h:760: warning: lowering visibility of 'nsCOMPtr<T>& nsCOMPtr<T>::operator=(nsGetServiceByContractID) [with T = nsIServiceManager]' to match its type
/usr/include/xulrunner-sdk-1.9pre/unstable/./nsCOMPtr.h:768: warning: lowering visibility of 'nsCOMPtr<T>& nsCOMPtr<T>::operator=(const nsGetServiceByContractIDWithError&) [with T = nsIServiceManager]' to match its type
/usr/include/xulrunner-sdk-1.9pre/unstable/./nsCOMPtr.h: In instantiation of 'nsCOMPtr<nsIIOService>':
EphyUtils.cpp:86:   instantiated from here
/usr/include/xulrunner-sdk-1.9pre/unstable/./nsCOMPtr.h:640: warning: lowering visibility of 'nsCOMPtr<T>::nsCOMPtr(nsQueryInterface) [with T = nsIIOService]' to match its type
/usr/include/xulrunner-sdk-1.9pre/unstable/./nsCOMPtr.h:648: warning: lowering visibility of 'nsCOMPtr<T>::nsCOMPtr(const nsQueryInterfaceWithError&) [with T = nsIIOService]' to match its type
/usr/include/xulrunner-sdk-1.9pre/unstable/./nsCOMPtr.h:656: warning: lowering visibility of 'nsCOMPtr<T>::nsCOMPtr(nsGetServiceByCID) [with T = nsIIOService]' to match its type
/usr/include/xulrunner-sdk-1.9pre/unstable/./nsCOMPtr.h:664: warning: lowering visibility of 'nsCOMPtr<T>::nsCOMPtr(const nsGetServiceByCIDWithError&) [with T = nsIIOService]' to match its type
/usr/include/xulrunner-sdk-1.9pre/unstable/./nsCOMPtr.h:672: warning: lowering visibility of 'nsCOMPtr<T>::nsCOMPtr(nsGetServiceByContractID) [with T = nsIIOService]' to match its type
/usr/include/xulrunner-sdk-1.9pre/unstable/./nsCOMPtr.h:680: warning: lowering visibility of 'nsCOMPtr<T>::nsCOMPtr(const nsGetServiceByContractIDWithError&) [with T = nsIIOService]' to match its type
/usr/include/xulrunner-sdk-1.9pre/unstable/./nsCOMPtr.h:728: warning: lowering visibility of 'nsCOMPtr<T>& nsCOMPtr<T>::operator=(nsQueryInterface) [with T = nsIIOService]' to match its type
/usr/include/xulrunner-sdk-1.9pre/unstable/./nsCOMPtr.h:736: warning: lowering visibility of 'nsCOMPtr<T>& nsCOMPtr<T>::operator=(const nsQueryInterfaceWithError&) [with T = nsIIOService]' to match its type
/usr/include/xulrunner-sdk-1.9pre/unstable/./nsCOMPtr.h:744: warning: lowering visibility of 'nsCOMPtr<T>& nsCOMPtr<T>::operator=(nsGetServiceByCID) [with T = nsIIOService]' to match its type
/usr/include/xulrunner-sdk-1.9pre/unstable/./nsCOMPtr.h:752: warning: lowering visibility of 'nsCOMPtr<T>& nsCOMPtr<T>::operator=(const nsGetServiceByCIDWithError&) [with T = nsIIOService]' to match its type
/usr/include/xulrunner-sdk-1.9pre/unstable/./nsCOMPtr.h:760: warning: lowering visibility of 'nsCOMPtr<T>& nsCOMPtr<T>::operator=(nsGetServiceByContractID) [with T = nsIIOService]' to match its type
/usr/include/xulrunner-sdk-1.9pre/unstable/./nsCOMPtr.h:768: warning: lowering visibility of 'nsCOMPtr<T>& nsCOMPtr<T>::operator=(const nsGetServiceByContractIDWithError&) [with T = nsIIOService]' to match its type
/usr/include/xulrunner-sdk-1.9pre/unstable/./nsCOMPtr.h: In instantiation of 'nsCOMPtr<nsIWindowWatcher>':
EphyUtils.cpp:111:   instantiated from here
/usr/include/xulrunner-sdk-1.9pre/unstable/./nsCOMPtr.h:640: warning: lowering visibility of 'nsCOMPtr<T>::nsCOMPtr(nsQueryInterface) [with T = nsIWindowWatcher]' to match its type
/usr/include/xulrunner-sdk-1.9pre/unstable/./nsCOMPtr.h:648: warning: lowering visibility of 'nsCOMPtr<T>::nsCOMPtr(const nsQueryInterfaceWithError&) [with T = nsIWindowWatcher]' to match its type
/usr/include/xulrunner-sdk-1.9pre/unstable/./nsCOMPtr.h:656: warning: lowering visibility of 'nsCOMPtr<T>::nsCOMPtr(nsGetServiceByCID) [with T = nsIWindowWatcher]' to match its type
/usr/include/xulrunner-sdk-1.9pre/unstable/./nsCOMPtr.h:664: warning: lowering visibility of 'nsCOMPtr<T>::nsCOMPtr(const nsGetServiceByCIDWithError&) [with T = nsIWindowWatcher]' to match its type
/usr/include/xulrunner-sdk-1.9pre/unstable/./nsCOMPtr.h:672: warning: lowering visibility of 'nsCOMPtr<T>::nsCOMPtr(nsGetServiceByContractID) [with T = nsIWindowWatcher]' to match its type
/usr/include/xulrunner-sdk-1.9pre/unstable/./nsCOMPtr.h:680: warning: lowering visibility of 'nsCOMPtr<T>::nsCOMPtr(const nsGetServiceByContractIDWithError&) [with T = nsIWindowWatcher]' to match its type
/usr/include/xulrunner-sdk-1.9pre/unstable/./nsCOMPtr.h:728: warning: lowering visibility of 'nsCOMPtr<T>& nsCOMPtr<T>::operator=(nsQueryInterface) [with T = nsIWindowWatcher]' to match its type
/usr/include/xulrunner-sdk-1.9pre/unstable/./nsCOMPtr.h:736: warning: lowering visibility of 'nsCOMPtr<T>& nsCOMPtr<T>::operator=(const nsQueryInterfaceWithError&) [with T = nsIWindowWatcher]' to match its type
/usr/include/xulrunner-sdk-1.9pre/unstable/./nsCOMPtr.h:744: warning: lowering visibility of 'nsCOMPtr<T>& nsCOMPtr<T>::operator=(nsGetServiceByCID) [with T = nsIWindowWatcher]' to match its type
/usr/include/xulrunner-sdk-1.9pre/unstable/./nsCOMPtr.h:752: warning: lowering visibility of 'nsCOMPtr<T>& nsCOMPtr<T>::operator=(const nsGetServiceByCIDWithError&) [with T = nsIWindowWatcher]' to match its type
/usr/include/xulrunner-sdk-1.9pre/unstable/./nsCOMPtr.h:760: warning: lowering visibility of 'nsCOMPtr<T>& nsCOMPtr<T>::operator=(nsGetServiceByContractID) [with T = nsIWindowWatcher]' to match its type
/usr/include/xulrunner-sdk-1.9pre/unstable/./nsCOMPtr.h:768: warning: lowering visibility of 'nsCOMPtr<T>& nsCOMPtr<T>::operator=(const nsGetServiceByContractIDWithError&) [with T = nsIWindowWatcher]' to match its type
/usr/include/xulrunner-sdk-1.9pre/unstable/./nsCOMPtr.h: In instantiation of 'nsCOMPtr<nsIDOMWindow>':
EphyUtils.cpp:117:   instantiated from here
/usr/include/xulrunner-sdk-1.9pre/unstable/./nsCOMPtr.h:640: warning: lowering visibility of 'nsCOMPtr<T>::nsCOMPtr(nsQueryInterface) [with T = nsIDOMWindow]' to match its type
/usr/include/xulrunner-sdk-1.9pre/unstable/./nsCOMPtr.h:648: warning: lowering visibility of 'nsCOMPtr<T>::nsCOMPtr(const nsQueryInterfaceWithError&) [with T = nsIDOMWindow]' to match its type
/usr/include/xulrunner-sdk-1.9pre/unstable/./nsCOMPtr.h:656: warning: lowering visibility of 'nsCOMPtr<T>::nsCOMPtr(nsGetServiceByCID) [with T = nsIDOMWindow]' to match its type
/usr/include/xulrunner-sdk-1.9pre/unstable/./nsCOMPtr.h:664: warning: lowering visibility of 'nsCOMPtr<T>::nsCOMPtr(const nsGetServiceByCIDWithError&) [with T = nsIDOMWindow]' to match its type
/usr/include/xulrunner-sdk-1.9pre/unstable/./nsCOMPtr.h:672: warning: lowering visibility of 'nsCOMPtr<T>::nsCOMPtr(nsGetServiceByContractID) [with T = nsIDOMWindow]' to match its type
/usr/include/xulrunner-sdk-1.9pre/unstable/./nsCOMPtr.h:680: warning: lowering visibility of 'nsCOMPtr<T>::nsCOMPtr(const nsGetServiceByContractIDWithError&) [with T = nsIDOMWindow]' to match its type
/usr/include/xulrunner-sdk-1.9pre/unstable/./nsCOMPtr.h:728: warning: lowering visibility of 'nsCOMPtr<T>& nsCOMPtr<T>::operator=(nsQueryInterface) [with T = nsIDOMWindow]' to match its type
/usr/include/xulrunner-sdk-1.9pre/unstable/./nsCOMPtr.h:736: warning: lowering visibility of 'nsCOMPtr<T>& nsCOMPtr<T>::operator=(const nsQueryInterfaceWithError&) [with T = nsIDOMWindow]' to match its type
/usr/include/xulrunner-sdk-1.9pre/unstable/./nsCOMPtr.h:744: warning: lowering visibility of 'nsCOMPtr<T>& nsCOMPtr<T>::operator=(nsGetServiceByCID) [with T = nsIDOMWindow]' to match its type
/usr/include/xulrunner-sdk-1.9pre/unstable/./nsCOMPtr.h:752: warning: lowering visibility of 'nsCOMPtr<T>& nsCOMPtr<T>::operator=(const nsGetServiceByCIDWithError&) [with T = nsIDOMWindow]' to match its type
/usr/include/xulrunner-sdk-1.9pre/unstable/./nsCOMPtr.h:760: warning: lowering visibility of 'nsCOMPtr<T>& nsCOMPtr<T>::operator=(nsGetServiceByContractID) [with T = nsIDOMWindow]' to match its type
/usr/include/xulrunner-sdk-1.9pre/unstable/./nsCOMPtr.h:768: warning: lowering visibility of 'nsCOMPtr<T>& nsCOMPtr<T>::operator=(const nsGetServiceByContractIDWithError&) [with T = nsIDOMWindow]' to match its type
/usr/include/xulrunner-sdk-1.9pre/unstable/./nsCOMPtr.h: In instantiation of 'nsCOMPtr<nsIWebBrowserChrome>':
EphyUtils.cpp:121:   instantiated from here
/usr/include/xulrunner-sdk-1.9pre/unstable/./nsCOMPtr.h:640: warning: lowering visibility of 'nsCOMPtr<T>::nsCOMPtr(nsQueryInterface) [with T = nsIWebBrowserChrome]' to match its type
/usr/include/xulrunner-sdk-1.9pre/unstable/./nsCOMPtr.h:648: warning: lowering visibility of 'nsCOMPtr<T>::nsCOMPtr(const nsQueryInterfaceWithError&) [with T = nsIWebBrowserChrome]' to match its type
/usr/include/xulrunner-sdk-1.9pre/unstable/./nsCOMPtr.h:656: warning: lowering visibility of 'nsCOMPtr<T>::nsCOMPtr(nsGetServiceByCID) [with T = nsIWebBrowserChrome]' to match its type
/usr/include/xulrunner-sdk-1.9pre/unstable/./nsCOMPtr.h:664: warning: lowering visibility of 'nsCOMPtr<T>::nsCOMPtr(const nsGetServiceByCIDWithError&) [with T = nsIWebBrowserChrome]' to match its type
/usr/include/xulrunner-sdk-1.9pre/unstable/./nsCOMPtr.h:672: warning: lowering visibility of 'nsCOMPtr<T>::nsCOMPtr(nsGetServiceByContractID) [with T = nsIWebBrowserChrome]' to match its type
/usr/include/xulrunner-sdk-1.9pre/unstable/./nsCOMPtr.h:680: warning: lowering visibility of 'nsCOMPtr<T>::nsCOMPtr(const nsGetServiceByContractIDWithError&) [with T = nsIWebBrowserChrome]' to match its type
/usr/include/xulrunner-sdk-1.9pre/unstable/./nsCOMPtr.h:728: warning: lowering visibility of 'nsCOMPtr<T>& nsCOMPtr<T>::operator=(nsQueryInterface) [with T = nsIWebBrowserChrome]' to match its type
/usr/include/xulrunner-sdk-1.9pre/unstable/./nsCOMPtr.h:736: warning: lowering visibility of 'nsCOMPtr<T>& nsCOMPtr<T>::operator=(const nsQueryInterfaceWithError&) [with T = nsIWebBrowserChrome]' to match its type
/usr/include/xulrunner-sdk-1.9pre/unstable/./nsCOMPtr.h:744: warning: lowering visibility of 'nsCOMPtr<T>& nsCOMPtr<T>::operator=(nsGetServiceByCID) [with T = nsIWebBrowserChrome]' to match its type
/usr/include/xulrunner-sdk-1.9pre/unstable/./nsCOMPtr.h:752: warning: lowering visibility of 'nsCOMPtr<T>& nsCOMPtr<T>::operator=(const nsGetServiceByCIDWithError&) [with T = nsIWebBrowserChrome]' to match its type
/usr/include/xulrunner-sdk-1.9pre/unstable/./nsCOMPtr.h:760: warning: lowering visibility of 'nsCOMPtr<T>& nsCOMPtr<T>::operator=(nsGetServiceByContractID) [with T = nsIWebBrowserChrome]' to match its type
/usr/include/xulrunner-sdk-1.9pre/unstable/./nsCOMPtr.h:768: warning: lowering visibility of 'nsCOMPtr<T>& nsCOMPtr<T>::operator=(const nsGetServiceByContractIDWithError&) [with T = nsIWebBrowserChrome]' to match its type
/usr/include/xulrunner-sdk-1.9pre/unstable/./nsCOMPtr.h: In instantiation of 'nsCOMPtr<nsIEmbeddingSiteWindow>':
EphyUtils.cpp:125:   instantiated from here
/usr/include/xulrunner-sdk-1.9pre/unstable/./nsCOMPtr.h:640: warning: lowering visibility of 'nsCOMPtr<T>::nsCOMPtr(nsQueryInterface) [with T = nsIEmbeddingSiteWindow]' to match its type
/usr/include/xulrunner-sdk-1.9pre/unstable/./nsCOMPtr.h:648: warning: lowering visibility of 'nsCOMPtr<T>::nsCOMPtr(const nsQueryInterfaceWithError&) [with T = nsIEmbeddingSiteWindow]' to match its type
/usr/include/xulrunner-sdk-1.9pre/unstable/./nsCOMPtr.h:656: warning: lowering visibility of 'nsCOMPtr<T>::nsCOMPtr(nsGetServiceByCID) [with T = nsIEmbeddingSiteWindow]' to match its type
/usr/include/xulrunner-sdk-1.9pre/unstable/./nsCOMPtr.h:664: warning: lowering visibility of 'nsCOMPtr<T>::nsCOMPtr(const nsGetServiceByCIDWithError&) [with T = nsIEmbeddingSiteWindow]' to match its type
/usr/include/xulrunner-sdk-1.9pre/unstable/./nsCOMPtr.h:672: warning: lowering visibility of 'nsCOMPtr<T>::nsCOMPtr(nsGetServiceByContractID) [with T = nsIEmbeddingSiteWindow]' to match its type
/usr/include/xulrunner-sdk-1.9pre/unstable/./nsCOMPtr.h:680: warning: lowering visibility of 'nsCOMPtr<T>::nsCOMPtr(const nsGetServiceByContractIDWithError&) [with T = nsIEmbeddingSiteWindow]' to match its type
/usr/include/xulrunner-sdk-1.9pre/unstable/./nsCOMPtr.h:728: warning: lowering visibility of 'nsCOMPtr<T>& nsCOMPtr<T>::operator=(nsQueryInterface) [with T = nsIEmbeddingSiteWindow]' to match its type
/usr/include/xulrunner-sdk-1.9pre/unstable/./nsCOMPtr.h:736: warning: lowering visibility of 'nsCOMPtr<T>& nsCOMPtr<T>::operator=(const nsQueryInterfaceWithError&) [with T = nsIEmbeddingSiteWindow]' to match its type
/usr/include/xulrunner-sdk-1.9pre/unstable/./nsCOMPtr.h:744: warning: lowering visibility of 'nsCOMPtr<T>& nsCOMPtr<T>::operator=(nsGetServiceByCID) [with T = nsIEmbeddingSiteWindow]' to match its type
/usr/include/xulrunner-sdk-1.9pre/unstable/./nsCOMPtr.h:752: warning: lowering visibility of 'nsCOMPtr<T>& nsCOMPtr<T>::operator=(const nsGetServiceByCIDWithError&) [with T = nsIEmbeddingSiteWindow]' to match its type
/usr/include/xulrunner-sdk-1.9pre/unstable/./nsCOMPtr.h:760: warning: lowering visibility of 'nsCOMPtr<T>& nsCOMPtr<T>::operator=(nsGetServiceByContractID) [with T = nsIEmbeddingSiteWindow]' to match its type
/usr/include/xulrunner-sdk-1.9pre/unstable/./nsCOMPtr.h:768: warning: lowering visibility of 'nsCOMPtr<T>& nsCOMPtr<T>::operator=(const nsGetServiceByContractIDWithError&) [with T = nsIEmbeddingSiteWindow]' to match its type
/usr/include/xulrunner-sdk-1.9pre/unstable/./nsCOMPtr.h: In instantiation of 'nsCOMPtr<nsIXPConnect>':
EphyUtils.cpp:175:   instantiated from here
/usr/include/xulrunner-sdk-1.9pre/unstable/./nsCOMPtr.h:640: warning: lowering visibility of 'nsCOMPtr<T>::nsCOMPtr(nsQueryInterface) [with T = nsIXPConnect]' to match its type
/usr/include/xulrunner-sdk-1.9pre/unstable/./nsCOMPtr.h:648: warning: lowering visibility of 'nsCOMPtr<T>::nsCOMPtr(const nsQueryInterfaceWithError&) [with T = nsIXPConnect]' to match its type
/usr/include/xulrunner-sdk-1.9pre/unstable/./nsCOMPtr.h:656: warning: lowering visibility of 'nsCOMPtr<T>::nsCOMPtr(nsGetServiceByCID) [with T = nsIXPConnect]' to match its type
/usr/include/xulrunner-sdk-1.9pre/unstable/./nsCOMPtr.h:664: warning: lowering visibility of 'nsCOMPtr<T>::nsCOMPtr(const nsGetServiceByCIDWithError&) [with T = nsIXPConnect]' to match its type
/usr/include/xulrunner-sdk-1.9pre/unstable/./nsCOMPtr.h:672: warning: lowering visibility of 'nsCOMPtr<T>::nsCOMPtr(nsGetServiceByContractID) [with T = nsIXPConnect]' to match its type
/usr/include/xulrunner-sdk-1.9pre/unstable/./nsCOMPtr.h:680: warning: lowering visibility of 'nsCOMPtr<T>::nsCOMPtr(const nsGetServiceByContractIDWithError&) [with T = nsIXPConnect]' to match its type
/usr/include/xulrunner-sdk-1.9pre/unstable/./nsCOMPtr.h:728: warning: lowering visibility of 'nsCOMPtr<T>& nsCOMPtr<T>::operator=(nsQueryInterface) [with T = nsIXPConnect]' to match its type
/usr/include/xulrunner-sdk-1.9pre/unstable/./nsCOMPtr.h:736: warning: lowering visibility of 'nsCOMPtr<T>& nsCOMPtr<T>::operator=(const nsQueryInterfaceWithError&) [with T = nsIXPConnect]' to match its type
/usr/include/xulrunner-sdk-1.9pre/unstable/./nsCOMPtr.h:744: warning: lowering visibility of 'nsCOMPtr<T>& nsCOMPtr<T>::operator=(nsGetServiceByCID) [with T = nsIXPConnect]' to match its type
/usr/include/xulrunner-sdk-1.9pre/unstable/./nsCOMPtr.h:752: warning: lowering visibility of 'nsCOMPtr<T>& nsCOMPtr<T>::operator=(const nsGetServiceByCIDWithError&) [with T = nsIXPConnect]' to match its type
/usr/include/xulrunner-sdk-1.9pre/unstable/./nsCOMPtr.h:760: warning: lowering visibility of 'nsCOMPtr<T>& nsCOMPtr<T>::operator=(nsGetServiceByContractID) [with T = nsIXPConnect]' to match its type
/usr/include/xulrunner-sdk-1.9pre/unstable/./nsCOMPtr.h:768: warning: lowering visibility of 'nsCOMPtr<T>& nsCOMPtr<T>::operator=(const nsGetServiceByContractIDWithError&) [with T = nsIXPConnect]' to match its type
EphyUtils.cpp: In function 'PRBool EphyJSUtils::IsCalledFromScript()':
EphyUtils.cpp:178: error: 'nsIXPCNativeCallContext' was not declared in this scope
EphyUtils.cpp:178: error: template argument 1 is invalid
EphyUtils.cpp:178: error: invalid type in declaration before ';' token
EphyUtils.cpp:179: error: no matching function for call to 'getter_AddRefs(int&)'
/usr/include/xulrunner-sdk-1.9pre/unstable/./nsCOMPtr.h: In constructor 'nsCOMPtr<T>::nsCOMPtr(nsGetServiceByContractID) [with T = nsIWindowWatcher]':
EphyUtils.cpp:111:   instantiated from here
/usr/include/xulrunner-sdk-1.9pre/unstable/./nsCOMPtr.h:672: warning: lowering visibility of 'nsCOMPtr<T>::nsCOMPtr(nsGetServiceByContractID) [with T = nsIWindowWatcher]' to match its type
/usr/include/xulrunner-sdk-1.9pre/unstable/./nsCOMPtr.h: In constructor 'nsCOMPtr<T>::nsCOMPtr(nsQueryInterface) [with T = nsIEmbeddingSiteWindow]':
EphyUtils.cpp:125:   instantiated from here
/usr/include/xulrunner-sdk-1.9pre/unstable/./nsCOMPtr.h:640: warning: lowering visibility of 'nsCOMPtr<T>::nsCOMPtr(nsQueryInterface) [with T = nsIEmbeddingSiteWindow]' to match its type
/usr/include/xulrunner-sdk-1.9pre/unstable/./nsCOMPtr.h: In constructor 'nsCOMPtr<T>::nsCOMPtr(const nsGetServiceByCIDWithError&) [with T = nsIXPConnect]':
EphyUtils.cpp:175:   instantiated from here
/usr/include/xulrunner-sdk-1.9pre/unstable/./nsCOMPtr.h:664: warning: lowering visibility of 'nsCOMPtr<T>::nsCOMPtr(const nsGetServiceByCIDWithError&) [with T = nsIXPConnect]' to match its type
make[4]: *** [libephymozillaembed_la-EphyUtils.lo] Error 1
make[4]: Leaving directory `/home/kmaraas/cvs/gnome/epiphany/embed/mozilla'
make[3]: *** [all-recursive] Error 1
make[3]: Leaving directory `/home/kmaraas/cvs/gnome/epiphany/embed'
make[2]: *** [all] Error 2
make[2]: Leaving directory `/home/kmaraas/cvs/gnome/epiphany/embed'
make[1]: *** [all-recursive] Error 1
make[1]: Leaving directory `/home/kmaraas/cvs/gnome/epiphany'
make: *** [all] Error 2
Comment 24 Christian Persch 2008-03-10 21:57:03 UTC
*** Bug 467812 has been marked as a duplicate of this bug. ***
Comment 25 Mike Hommey 2008-03-15 08:36:17 UTC
(In reply to comment #8)
> I've committed most of the good bits from this patch already to svn trunk.
> Excepted are the configure changes; I don't like relying on distro specific pc
> files, and I don't think the XPCOM_GLUE bits are right either. We need to use
> the dependent glue, not the standalone glue.

Why is that ? As an embedding application, you are supposed to use the standalone glue...

http://developer.mozilla.org/en/docs/XPCOM_Glue
Comment 26 Mike Hommey 2008-03-15 08:55:46 UTC
(and wouldn't have to worry about rpath)
Comment 27 Christian Persch 2008-03-26 22:06:37 UTC
This should all be fixed on svn trunk (will be merged to 2-22 before the 2.22.1 release). Please open new bugs for remaining issues, if any.