Index: Source/core/events/EventContext.cpp |
diff --git a/Source/core/events/EventContext.cpp b/Source/core/events/EventContext.cpp |
index ed40fa9f8a7f6bdfe4903a61515cf2cc3c45e5e6..0282b13483299c3ef157d7f239fd9d136b9758f9 100644 |
--- a/Source/core/events/EventContext.cpp |
+++ b/Source/core/events/EventContext.cpp |
@@ -35,14 +35,14 @@ |
namespace WebCore { |
-EventContext::EventContext(PassRefPtr<Node> node, PassRefPtr<EventTarget> currentTarget) |
+NodeEventContext::NodeEventContext(PassRefPtr<Node> node, PassRefPtr<EventTarget> currentTarget) |
: m_node(node) |
, m_currentTarget(currentTarget) |
{ |
ASSERT(m_node); |
} |
-EventContext::~EventContext() |
+NodeEventContext::~NodeEventContext() |
{ |
} |
@@ -51,7 +51,7 @@ void TreeScopeEventContext::adoptEventPath(Vector<RefPtr<Node> >& nodes) |
m_eventPath = StaticNodeList::adopt(nodes); |
} |
-void EventContext::handleLocalEvents(Event* event) const |
+void NodeEventContext::handleLocalEvents(Event* event) const |
{ |
if (touchEventContext()) { |
touchEventContext()->handleLocalEvents(event); |