| 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 68ec7e743674cb2a9f8af476caf886a626de2ec2..e6289913ae47faca3565be13e8a5488ecd33ea9a 100644
|
| --- a/third_party/WebKit/Source/core/dom/IntersectionObserverController.cpp
|
| +++ b/third_party/WebKit/Source/core/dom/IntersectionObserverController.cpp
|
| @@ -42,7 +42,7 @@ void IntersectionObserverController::postTaskToDeliverObservations() {
|
|
|
| void IntersectionObserverController::scheduleIntersectionObserverForDelivery(
|
| IntersectionObserver& observer) {
|
| - m_pendingIntersectionObservers.add(&observer);
|
| + m_pendingIntersectionObservers.insert(&observer);
|
| postTaskToDeliverObservations();
|
| }
|
|
|
| @@ -84,7 +84,7 @@ void IntersectionObserverController::computeTrackedIntersectionObservations() {
|
|
|
| void IntersectionObserverController::addTrackedObserver(
|
| IntersectionObserver& observer) {
|
| - m_trackedIntersectionObservers.add(&observer);
|
| + m_trackedIntersectionObservers.insert(&observer);
|
| }
|
|
|
| void IntersectionObserverController::removeTrackedObserversForRoot(
|
|
|