diff options
author | Moonchild <moonchild@palemoon.org> | 2021-07-12 03:04:29 +0000 |
---|---|---|
committer | Moonchild <moonchild@palemoon.org> | 2021-07-12 03:04:29 +0000 |
commit | 1b86eb76fc620fb3e4d2683401b55780f26d1d3d (patch) | |
tree | a0a2053fcba47cbc19f4593c43b802e2eda4784a /dom/events/moz.build | |
parent | ea0e4de698ec2f983cfb0a6f758a41a15bccba5a (diff) | |
download | uxp-1b86eb76fc620fb3e4d2683401b55780f26d1d3d.tar.gz |
Issue #1792 - Part 3: Add ConstructibleEventTarget helper class.
Of course it couldn't be trivial :P
wrapObject is a pure virtual function which prevents an abstract constructor
from being used.
So, we need to extend DOMEventTargetHelper (applicable acronym: DETH :D) with
a wrapObject implementation - in a derivative class is the clearest way to do
this, as opposed to making DETH more complex.
Diffstat (limited to 'dom/events/moz.build')
-rw-r--r-- | dom/events/moz.build | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/dom/events/moz.build b/dom/events/moz.build index c5fd750146..d651167bd9 100644 --- a/dom/events/moz.build +++ b/dom/events/moz.build @@ -40,6 +40,7 @@ EXPORTS.mozilla.dom += [ 'ClipboardEvent.h', 'CommandEvent.h', 'CompositionEvent.h', + 'ConstructibleEventTarget.h', 'CustomEvent.h', 'DataContainerEvent.h', 'DataTransfer.h', @@ -80,6 +81,7 @@ SOURCES += [ 'ClipboardEvent.cpp', 'CommandEvent.cpp', 'CompositionEvent.cpp', + 'ConstructibleEventTarget.cpp', 'ContentEventHandler.cpp', 'CustomEvent.cpp', 'DataContainerEvent.cpp', |