| Index: third_party/WebKit/Source/bindings/core/v8/RejectedPromises.cpp
|
| diff --git a/third_party/WebKit/Source/bindings/core/v8/RejectedPromises.cpp b/third_party/WebKit/Source/bindings/core/v8/RejectedPromises.cpp
|
| index f80f87adb904d86cf43c3946204254c8ae6c9510..1d88131c21f7facd1b407880573a48ccab5f2266 100644
|
| --- a/third_party/WebKit/Source/bindings/core/v8/RejectedPromises.cpp
|
| +++ b/third_party/WebKit/Source/bindings/core/v8/RejectedPromises.cpp
|
| @@ -197,7 +197,8 @@ void RejectedPromises::rejectedWithNoHandler(
|
| }
|
|
|
| void RejectedPromises::handlerAdded(v8::PromiseRejectMessage data) {
|
| - // First look it up in the pending messages and fast return, it'll be covered by processQueue().
|
| + // First look it up in the pending messages and fast return, it'll be covered
|
| + // by processQueue().
|
| for (auto it = m_queue.begin(); it != m_queue.end(); ++it) {
|
| if (!(*it)->isCollected() && (*it)->hasPromise(data.GetPromise())) {
|
| m_queue.remove(it);
|
|
|