Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(181)

Unified Diff: third_party/WebKit/Source/core/dom/IntersectionObserverController.cpp

Issue 2567913002: Rename ActiveDOMObject to SuspendableObject (Closed)
Patch Set: Created 4 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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

Powered by Google App Engine
This is Rietveld 408576698