Index: Source/core/events/UIEvent.cpp |
diff --git a/Source/core/events/UIEvent.cpp b/Source/core/events/UIEvent.cpp |
index ad9c852c4eeea9e23caeb98164e3877925b0f24e..611e5ffbdba41417c0523fcafee540848481ffe4 100644 |
--- a/Source/core/events/UIEvent.cpp |
+++ b/Source/core/events/UIEvent.cpp |
@@ -23,7 +23,6 @@ |
#include "config.h" |
#include "core/events/UIEvent.h" |
- |
namespace blink { |
UIEvent::UIEvent() |
@@ -35,6 +34,7 @@ UIEvent::UIEvent(const AtomicString& eventType, bool canBubbleArg, bool cancelab |
: Event(eventType, canBubbleArg, cancelableArg) |
, m_view(viewArg) |
, m_detail(detailArg) |
+ , m_sourceDevice(InputDevice::create()) |
{ |
} |
@@ -42,6 +42,7 @@ UIEvent::UIEvent(const AtomicString& eventType, const UIEventInit& initializer) |
: Event(eventType, initializer) |
, m_view(initializer.view()) |
, m_detail(initializer.detail()) |
+ , m_sourceDevice(initializer.sourceDevice()) |
{ |
} |
@@ -58,6 +59,7 @@ void UIEvent::initUIEvent(const AtomicString& typeArg, bool canBubbleArg, bool c |
m_view = viewArg; |
m_detail = detailArg; |
+ m_sourceDevice = InputDevice::create(); |
} |
bool UIEvent::isUIEvent() const |
@@ -108,6 +110,7 @@ int UIEvent::which() const |
DEFINE_TRACE(UIEvent) |
{ |
visitor->trace(m_view); |
+ visitor->trace(m_sourceDevice); |
Event::trace(visitor); |
} |