Chromium Code Reviews| Index: Source/core/events/TreeScopeEventContext.h |
| diff --git a/Source/core/events/TreeScopeEventContext.h b/Source/core/events/TreeScopeEventContext.h |
| index b6d018da498630c18bd5753653e1519793b248c7..8cd3d6448679d7004450f1bcb83051601c506b1c 100644 |
| --- a/Source/core/events/TreeScopeEventContext.h |
| +++ b/Source/core/events/TreeScopeEventContext.h |
| @@ -62,7 +62,7 @@ public: |
| TouchEventContext* touchEventContext() const { return m_touchEventContext.get(); } |
| TouchEventContext* ensureTouchEventContext(); |
| - PassRefPtrWillBeRawPtr<StaticNodeList> ensureEventPath(EventPath&); |
| + Vector<RefPtrWillBeRawPtr<EventTarget>>& ensureEventPath(EventPath&); |
|
hayato
2015/01/15 04:15:28
WillBeHeapVector?
kojii
2015/01/15 06:56:44
Done.
|
| bool isInclusiveAncestorOf(const TreeScopeEventContext&); |
| void addChild(TreeScopeEventContext& child) { m_children.append(&child); } |
| @@ -82,7 +82,7 @@ private: |
| RefPtrWillBeMember<Node> m_rootNode; // Prevents TreeScope from being freed. TreeScope itself isn't RefCounted. |
| RefPtrWillBeMember<EventTarget> m_target; |
| RefPtrWillBeMember<EventTarget> m_relatedTarget; |
| - RefPtrWillBeMember<StaticNodeList> m_eventPath; |
| + OwnPtrWillBeMember<WillBeHeapVector<RefPtr<EventTarget>>> m_eventPath; |
| RefPtrWillBeMember<TouchEventContext> m_touchEventContext; |
| WillBeHeapVector<RawPtrWillBeMember<TreeScopeEventContext>> m_children; |