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

Unified Diff: third_party/WebKit/Source/core/animation/Animation.cpp

Issue 1805843002: [v8 gc] Introduce a base class for all objects that can have pending activity (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: updates Created 4 years, 9 months 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 ea51e8b730e8c0a03c1335631b1fa6446bdb18e7..0890c76a74c40a6c9502826d7d85466b2bc0be33 100644
--- a/third_party/WebKit/Source/core/animation/Animation.cpp
+++ b/third_party/WebKit/Source/core/animation/Animation.cpp
@@ -77,7 +77,8 @@ Animation* Animation::create(AnimationEffect* effect, AnimationTimeline* timelin
}
Animation::Animation(ExecutionContext* executionContext, AnimationTimeline& timeline, AnimationEffect* content)
- : ActiveDOMObject(executionContext)
+ : ActiveScriptWrappable(this)
+ , ActiveDOMObject(executionContext)
, m_playState(Idle)
, m_playbackRate(1)
, m_startTime(nullValue())

Powered by Google App Engine
This is Rietveld 408576698