| Index: third_party/WebKit/Source/core/events/PointerEvent.cpp
|
| diff --git a/third_party/WebKit/Source/core/events/PointerEvent.cpp b/third_party/WebKit/Source/core/events/PointerEvent.cpp
|
| index 15e0e33dfd77a37ceffed993bb744ff4b02bc0cc..a609321e15ad2673ccdd0dbc2c378ae2606d0554 100644
|
| --- a/third_party/WebKit/Source/core/events/PointerEvent.cpp
|
| +++ b/third_party/WebKit/Source/core/events/PointerEvent.cpp
|
| @@ -37,7 +37,7 @@ PointerEvent::PointerEvent(const AtomicString& type,
|
| m_isPrimary = initializer.isPrimary();
|
| if (initializer.hasCoalescedEvents()) {
|
| for (auto coalescedEvent : initializer.coalescedEvents())
|
| - m_coalescedEvents.append(coalescedEvent);
|
| + m_coalescedEvents.push_back(coalescedEvent);
|
| }
|
| }
|
|
|
|
|