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

Unified Diff: third_party/WebKit/Source/core/animation/Animation.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/animation/Animation.cpp
diff --git a/third_party/WebKit/Source/core/animation/Animation.cpp b/third_party/WebKit/Source/core/animation/Animation.cpp
index f6ba49b2c9d18e2958dc412ddce925d12d139838..6638823ac509e9ddb34174cdc75f2186935c9a7c 100644
--- a/third_party/WebKit/Source/core/animation/Animation.cpp
+++ b/third_party/WebKit/Source/core/animation/Animation.cpp
@@ -82,7 +82,7 @@ Animation::Animation(ExecutionContext* executionContext,
AnimationTimeline& timeline,
AnimationEffectReadOnly* content)
: ActiveScriptWrappable(this),
- ActiveDOMObject(executionContext),
+ SuspendableObject(executionContext),
m_playState(Idle),
m_playbackRate(1),
m_startTime(nullValue()),
@@ -647,7 +647,7 @@ const AtomicString& Animation::interfaceName() const {
}
ExecutionContext* Animation::getExecutionContext() const {
- return ActiveDOMObject::getExecutionContext();
+ return SuspendableObject::getExecutionContext();
}
bool Animation::hasPendingActivity() const {
@@ -1127,7 +1127,7 @@ DEFINE_TRACE(Animation) {
visitor->trace(m_finishedPromise);
visitor->trace(m_readyPromise);
EventTargetWithInlineData::trace(visitor);
- ActiveDOMObject::trace(visitor);
+ SuspendableObject::trace(visitor);
}
} // namespace blink

Powered by Google App Engine
This is Rietveld 408576698