aboutsummaryrefslogtreecommitdiffstats
path: root/embed/mozilla/EphyBrowser.h
diff options
context:
space:
mode:
authorChristian Persch <chpe@src.gnome.org>2008-03-27 06:25:35 +0800
committerChristian Persch <chpe@src.gnome.org>2008-03-27 06:25:35 +0800
commit43677165c94609018dc9150e1e2fa1a4c5e904f5 (patch)
treedb580bc55d9d8af9120ab31b31786778702a7480 /embed/mozilla/EphyBrowser.h
parent8e162912682fb133ecdd5dbba3afd27620804c1d (diff)
downloadgsoc2013-epiphany-43677165c94609018dc9150e1e2fa1a4c5e904f5.tar
gsoc2013-epiphany-43677165c94609018dc9150e1e2fa1a4c5e904f5.tar.gz
gsoc2013-epiphany-43677165c94609018dc9150e1e2fa1a4c5e904f5.tar.bz2
gsoc2013-epiphany-43677165c94609018dc9150e1e2fa1a4c5e904f5.tar.lz
gsoc2013-epiphany-43677165c94609018dc9150e1e2fa1a4c5e904f5.tar.xz
gsoc2013-epiphany-43677165c94609018dc9150e1e2fa1a4c5e904f5.tar.zst
gsoc2013-epiphany-43677165c94609018dc9150e1e2fa1a4c5e904f5.zip
Next try to get cert exception addition working. This too isn't not working correctly though; it fails to get any properties from my |arguments| object.
svn path=/trunk/; revision=8135
Diffstat (limited to 'embed/mozilla/EphyBrowser.h')
-rw-r--r--embed/mozilla/EphyBrowser.h10
1 files changed, 10 insertions, 0 deletions
diff --git a/embed/mozilla/EphyBrowser.h b/embed/mozilla/EphyBrowser.h
index 75ad0e8c9..68f41b0af 100644
--- a/embed/mozilla/EphyBrowser.h
+++ b/embed/mozilla/EphyBrowser.h
@@ -107,6 +107,14 @@ public:
EphyDOMScrollEventListener(EphyBrowser *aOwner) : EphyEventListener(aOwner) { };
};
+class EphyCommandEventListener : public EphyEventListener
+{
+public:
+ NS_IMETHOD HandleEvent(nsIDOMEvent* aEvent);
+
+ EphyCommandEventListener(EphyBrowser *aOwner) : EphyEventListener(aOwner) { };
+};
+
class EphyContextMenuListener : public nsIDOMContextMenuListener
{
public:
@@ -131,6 +139,7 @@ friend class EphyMiscDOMEventsListener;
friend class EphyDOMScrollEventListener;
friend class EphyPopupBlockEventListener;
friend class EphyModalAlertEventListener;
+friend class EphyCommandEventListener;
friend class EphyContextMenuListener;
public:
EphyBrowser();
@@ -204,6 +213,7 @@ private:
EphyDOMScrollEventListener *mDOMScrollEventListener;
EphyPopupBlockEventListener *mPopupBlockEventListener;
EphyModalAlertEventListener *mModalAlertListener;
+ EphyCommandEventListener *mCommandEventListener;
EphyContextMenuListener *mContextMenuListener;
PRBool mInitialized;
#ifdef HAVE_MOZILLA_PSM