| Index: third_party/WebKit/Source/core/dom/IntersectionObserverController.cpp
|
| diff --git a/third_party/WebKit/Source/core/dom/IntersectionObserverController.cpp b/third_party/WebKit/Source/core/dom/IntersectionObserverController.cpp
|
| index caf859d8860fd26ed46d2c2af82e12b81d0258be..6b49dee2634396f338c3e1f64028df21534d4f89 100644
|
| --- a/third_party/WebKit/Source/core/dom/IntersectionObserverController.cpp
|
| +++ b/third_party/WebKit/Source/core/dom/IntersectionObserverController.cpp
|
| @@ -92,7 +92,7 @@ void IntersectionObserverController::removeTrackedObserversForRoot(
|
| HeapVector<Member<IntersectionObserver>> toRemove;
|
| for (auto& observer : m_trackedIntersectionObservers) {
|
| if (observer->root() == &root)
|
| - toRemove.append(observer);
|
| + toRemove.push_back(observer);
|
| }
|
| m_trackedIntersectionObservers.removeAll(toRemove);
|
| }
|
|
|