| Index: third_party/WebKit/Source/core/dom/ExecutionContext.cpp
|
| diff --git a/third_party/WebKit/Source/core/dom/ExecutionContext.cpp b/third_party/WebKit/Source/core/dom/ExecutionContext.cpp
|
| index dc9c24da8fc39e1faa91a2ecbd63095d71e3c9aa..4d59b66036b2f3d443a5c1e3420299281b08144b 100644
|
| --- a/third_party/WebKit/Source/core/dom/ExecutionContext.cpp
|
| +++ b/third_party/WebKit/Source/core/dom/ExecutionContext.cpp
|
| @@ -104,7 +104,7 @@ bool ExecutionContext::shouldSanitizeScriptError(
|
| void ExecutionContext::dispatchErrorEvent(ErrorEvent* errorEvent,
|
| AccessControlStatus corsStatus) {
|
| if (m_inDispatchErrorEvent) {
|
| - m_pendingExceptions.append(errorEvent);
|
| + m_pendingExceptions.push_back(errorEvent);
|
| return;
|
| }
|
|
|
|
|