| Index: third_party/WebKit/Source/core/events/ScopedEventQueue.cpp
|
| diff --git a/third_party/WebKit/Source/core/events/ScopedEventQueue.cpp b/third_party/WebKit/Source/core/events/ScopedEventQueue.cpp
|
| index 83046ea5133430d985def9ad37d56e12ec368fa7..90ebf8df36aa49af5402e692774e70d51aa384a7 100644
|
| --- a/third_party/WebKit/Source/core/events/ScopedEventQueue.cpp
|
| +++ b/third_party/WebKit/Source/core/events/ScopedEventQueue.cpp
|
| @@ -58,7 +58,7 @@ void ScopedEventQueue::initialize() {
|
| void ScopedEventQueue::enqueueEventDispatchMediator(
|
| EventDispatchMediator* mediator) {
|
| if (shouldQueueEvents())
|
| - m_queuedEventDispatchMediators.append(mediator);
|
| + m_queuedEventDispatchMediators.push_back(mediator);
|
| else
|
| dispatchEvent(mediator);
|
| }
|
|
|