Index: Source/core/events/MouseEvent.cpp |
diff --git a/Source/core/events/MouseEvent.cpp b/Source/core/events/MouseEvent.cpp |
index a3756508e9e83c137371641acbd208e926a1d951..c56db45ab6f2e09a5902a772b25e7f1b6724f6ca 100644 |
--- a/Source/core/events/MouseEvent.cpp |
+++ b/Source/core/events/MouseEvent.cpp |
@@ -76,7 +76,6 @@ MouseEvent::MouseEvent() |
, m_relatedTarget(nullptr) |
, m_dataTransfer(nullptr) |
, m_syntheticEventType(PlatformMouseEvent::RealOrIndistinguishable) |
- , m_isTrusted(false) |
{ |
} |
@@ -97,7 +96,6 @@ MouseEvent::MouseEvent(const AtomicString& eventType, bool canBubble, bool cance |
, m_relatedTarget(relatedTarget) |
, m_dataTransfer(dataTransfer) |
, m_syntheticEventType(syntheticEventType) |
- , m_isTrusted(false) |
{ |
setUICreateTime(uiCreateTime); |
} |
@@ -112,7 +110,6 @@ MouseEvent::MouseEvent(const AtomicString& eventType, const MouseEventInit& init |
, m_relatedTarget(initializer.relatedTarget()) |
, m_dataTransfer(nullptr) |
, m_syntheticEventType(PlatformMouseEvent::RealOrIndistinguishable) |
- , m_isTrusted(false) |
{ |
initCoordinates(IntPoint(initializer.clientX(), initializer.clientY())); |
} |