aboutsummaryrefslogtreecommitdiffstats
path: root/embed
diff options
context:
space:
mode:
authorChristian Persch <chpe@cvs.gnome.org>2005-01-01 05:35:21 +0800
committerChristian Persch <chpe@src.gnome.org>2005-01-01 05:35:21 +0800
commit0a1d99faa339cf89c80b156305688ee4901578bb (patch)
treedd3d2ecdb9a79450a996bd11b3b175985a301dfd /embed
parent603f7e2f4471384f40680b12a91d48ed1d299c9c (diff)
downloadgsoc2013-epiphany-0a1d99faa339cf89c80b156305688ee4901578bb.tar
gsoc2013-epiphany-0a1d99faa339cf89c80b156305688ee4901578bb.tar.gz
gsoc2013-epiphany-0a1d99faa339cf89c80b156305688ee4901578bb.tar.bz2
gsoc2013-epiphany-0a1d99faa339cf89c80b156305688ee4901578bb.tar.lz
gsoc2013-epiphany-0a1d99faa339cf89c80b156305688ee4901578bb.tar.xz
gsoc2013-epiphany-0a1d99faa339cf89c80b156305688ee4901578bb.tar.zst
gsoc2013-epiphany-0a1d99faa339cf89c80b156305688ee4901578bb.zip
Fix compilation in the !HAVE_MOZILLA_PSM case.
2004-12-31 Christian Persch <chpe@cvs.gnome.org> * embed/mozilla/EphyBrowser.h: Fix compilation in the !HAVE_MOZILLA_PSM case.
Diffstat (limited to 'embed')
-rw-r--r--embed/mozilla/EphyBrowser.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/embed/mozilla/EphyBrowser.h b/embed/mozilla/EphyBrowser.h
index 05e93235e..c2d583417 100644
--- a/embed/mozilla/EphyBrowser.h
+++ b/embed/mozilla/EphyBrowser.h
@@ -156,11 +156,13 @@ private:
nsCOMPtr<nsIDOMDocument> mTargetDocument;
nsCOMPtr<nsIDOMEventTarget> mEventTarget;
nsCOMPtr<nsIDOMWindow> mDOMWindow;
- nsCOMPtr<nsISecureBrowserUI> mSecurityInfo;
EphyFaviconEventListener *mFaviconEventListener;
EphyPopupBlockEventListener *mPopupBlockEventListener;
EphyModalAlertEventListener *mModalAlertListener;
PRBool mInitialized;
+#ifdef HAVE_MOZILLA_PSM
+ nsCOMPtr<nsISecureBrowserUI> mSecurityInfo;
+#endif
nsresult GetListener (void);
nsresult AttachListeners (void);
@@ -171,4 +173,4 @@ private:
PRBool CompareFormsText (nsAString &aDefaultText, nsAString &aUserText);
};
-#endif
+#endif /* !EPHY_BROWSER_H */