diff options
Diffstat (limited to 'embed/mozilla/EphyBrowser.h')
-rw-r--r-- | embed/mozilla/EphyBrowser.h | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/embed/mozilla/EphyBrowser.h b/embed/mozilla/EphyBrowser.h index 159f449b3..77f2923a6 100644 --- a/embed/mozilla/EphyBrowser.h +++ b/embed/mozilla/EphyBrowser.h @@ -100,6 +100,14 @@ public: EphyDOMContentLoadedEventListener(EphyBrowser *aOwner) : EphyEventListener(aOwner) { }; }; +class EphyDOMScrollEventListener : public EphyEventListener +{ +public: + NS_IMETHOD HandleEvent(nsIDOMEvent* aEvent); + + EphyDOMScrollEventListener(EphyBrowser *aOwner) : EphyEventListener(aOwner) { }; +}; + class EphyContextMenuListener : public nsIDOMContextMenuListener { public: @@ -121,6 +129,7 @@ class EphyBrowser friend class EphyEventListener; friend class EphyDOMLinkEventListener; friend class EphyDOMContentLoadedEventListener; +friend class EphyDOMScrollEventListener; friend class EphyPopupBlockEventListener; friend class EphyModalAlertEventListener; friend class EphyContextMenuListener; @@ -186,6 +195,7 @@ private: nsCOMPtr<nsIDOMWindow> mDOMWindow; EphyDOMLinkEventListener *mDOMLinkEventListener; EphyDOMContentLoadedEventListener *mDOMContentLoadedEventListener; + EphyDOMScrollEventListener *mDOMScrollEventListener; EphyPopupBlockEventListener *mPopupBlockEventListener; EphyModalAlertEventListener *mModalAlertListener; EphyContextMenuListener *mContextMenuListener; |