diff options
Diffstat (limited to 'embed/mozilla/mozilla-embed.cpp')
-rw-r--r-- | embed/mozilla/mozilla-embed.cpp | 14 |
1 files changed, 10 insertions, 4 deletions
diff --git a/embed/mozilla/mozilla-embed.cpp b/embed/mozilla/mozilla-embed.cpp index 444e8bfc5..30d825f5f 100644 --- a/embed/mozilla/mozilla-embed.cpp +++ b/embed/mozilla/mozilla-embed.cpp @@ -34,17 +34,23 @@ #include "EventContext.h" #include <gtkmozembed.h> -#include <nsIWindowWatcher.h> #include <nsIURI.h> #include <nsIURL.h> -#include <nsNetUtil.h> -#include <nsString.h> #include <nsIRequest.h> #include <nsIWebProgressListener.h> -#include <nsITransportSecurityInfo.h> #include <nsIPrintOptions.h> #include <nsGfxCIID.h> +#ifdef ALLOW_PRIVATE_API +/* not sure about this one */ +#include <nsITransportSecurityInfo.h> +#endif + +#ifdef ALLOW_PRIVATE_STRINGS +#include <nsNetUtil.h> +#include <nsString.h> +#endif + static void mozilla_embed_class_init (MozillaEmbedClass *klass); static void mozilla_embed_init (MozillaEmbed *gs); static void mozilla_embed_destroy (GtkObject *object); |