diff options
Diffstat (limited to 'embed/mozilla/EphyBrowser.h')
-rw-r--r-- | embed/mozilla/EphyBrowser.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/embed/mozilla/EphyBrowser.h b/embed/mozilla/EphyBrowser.h index d5bacb97d..9d3cd8979 100644 --- a/embed/mozilla/EphyBrowser.h +++ b/embed/mozilla/EphyBrowser.h @@ -33,6 +33,7 @@ #include <nsIDOMDocument.h> #include <nsIDOMWindow.h> #include <nsIPrintSettings.h> +#include <nsIRequest.h> #ifdef ALLOW_PRIVATE_API #include <nsIDocShell.h> @@ -126,12 +127,16 @@ public: nsresult GetHasModifiedForms (PRBool *modified); + nsresult SetSecurityInfo (nsIRequest *aRequest); + nsresult GetSecurityDescription (nsACString &aDescription); + nsCOMPtr<nsIWebBrowser> mWebBrowser; private: nsCOMPtr<nsIDOMDocument> mTargetDocument; nsCOMPtr<nsIDOMEventReceiver> mEventReceiver; nsCOMPtr<nsIDOMWindow> mDOMWindow; + nsCOMPtr<nsISupports> mSecurityInfo; EphyFaviconEventListener *mFaviconEventListener; EphyPopupBlockEventListener *mPopupBlockEventListener; PRBool mInitialized; |