| 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 1e26176a4d1581957512481ce00dddbd9dc6e6d4..d0888bc33b42b649732eea215d9a7386cf034955 100644
|
| --- a/third_party/WebKit/Source/core/dom/IntersectionObserverController.cpp
|
| +++ b/third_party/WebKit/Source/core/dom/IntersectionObserverController.cpp
|
| @@ -20,7 +20,7 @@ IntersectionObserverController* IntersectionObserverController::create(
|
|
|
| IntersectionObserverController::IntersectionObserverController(
|
| Document* document)
|
| - : ActiveDOMObject(document),
|
| + : SuspendableObject(document),
|
| m_weakPtrFactory(this),
|
| m_callbackFiredWhileSuspended(false) {}
|
|
|
| @@ -95,7 +95,7 @@ void IntersectionObserverController::removeTrackedObserversForRoot(
|
| DEFINE_TRACE(IntersectionObserverController) {
|
| visitor->trace(m_trackedIntersectionObservers);
|
| visitor->trace(m_pendingIntersectionObservers);
|
| - ActiveDOMObject::trace(visitor);
|
| + SuspendableObject::trace(visitor);
|
| }
|
|
|
| } // namespace blink
|
|
|