diff options
Diffstat (limited to 'embed/mozilla/EphyBrowser.h')
-rw-r--r-- | embed/mozilla/EphyBrowser.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/embed/mozilla/EphyBrowser.h b/embed/mozilla/EphyBrowser.h index 07023887c..72d69a8a7 100644 --- a/embed/mozilla/EphyBrowser.h +++ b/embed/mozilla/EphyBrowser.h @@ -66,6 +66,12 @@ private: nsresult HandleFaviconLink (nsIDOMNode *node); }; +class EphyPopupBlockEventListener : public EphyEventListener +{ +public: + NS_IMETHOD HandleEvent(nsIDOMEvent* aEvent); +}; + class EphyBrowser { public: @@ -128,6 +134,7 @@ private: nsCOMPtr<nsIDOMEventReceiver> mEventReceiver; nsCOMPtr<nsIDOMWindow> mDOMWindow; EphyFaviconEventListener *mFaviconEventListener; + EphyPopupBlockEventListener *mPopupBlockEventListener; PRBool mInitialized; nsresult GetListener (void); |