summaryrefslogtreecommitdiffstats
path: root/WebCore/dom/TouchEvent.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'WebCore/dom/TouchEvent.cpp')
-rw-r--r--WebCore/dom/TouchEvent.cpp8
1 files changed, 8 insertions, 0 deletions
diff --git a/WebCore/dom/TouchEvent.cpp b/WebCore/dom/TouchEvent.cpp
index bcc395f..88d3e6f 100644
--- a/WebCore/dom/TouchEvent.cpp
+++ b/WebCore/dom/TouchEvent.cpp
@@ -31,6 +31,10 @@
namespace WebCore {
+TouchEvent::TouchEvent()
+{
+}
+
TouchEvent::TouchEvent(TouchList* touches, TouchList* targetTouches,
TouchList* changedTouches, const AtomicString& type,
PassRefPtr<AbstractView> view, int screenX, int screenY, int pageX, int pageY,
@@ -43,6 +47,10 @@ TouchEvent::TouchEvent(TouchList* touches, TouchList* targetTouches,
{
}
+TouchEvent::~TouchEvent()
+{
+}
+
void TouchEvent::initTouchEvent(TouchList* touches, TouchList* targetTouches,
TouchList* changedTouches, const AtomicString& type,
PassRefPtr<AbstractView> view, int screenX, int screenY, int clientX, int clientY,