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

Unified Diff: Source/core/animation/KeyframeEffectModel.cpp

Issue 993413004: Devtools Animations: Update transition timing on timeline interaction (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 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: Source/core/animation/KeyframeEffectModel.cpp
diff --git a/Source/core/animation/KeyframeEffectModel.cpp b/Source/core/animation/KeyframeEffectModel.cpp
index e6ae191aa388bf1fb0920fc60681fcbcc9380751..d8806967761b9d6e9f29568c979a8a47d829272d 100644
--- a/Source/core/animation/KeyframeEffectModel.cpp
+++ b/Source/core/animation/KeyframeEffectModel.cpp
@@ -55,6 +55,14 @@ PropertySet KeyframeEffectModelBase::properties() const
return result;
}
+void KeyframeEffectModelBase::setFrames(KeyframeVector& keyframes)
+{
+ // FIXME: Should also notify/invalidate the player
dstockwell 2015/03/26 22:56:16 TODO(samli):
samli 2015/03/30 00:22:55 Done.
+ m_keyframes = keyframes;
+ m_keyframeGroups = nullptr;
+ m_interpolationEffect = nullptr;
+}
+
void KeyframeEffectModelBase::sample(int iteration, double fraction, double iterationDuration, OwnPtrWillBeRawPtr<WillBeHeapVector<RefPtrWillBeMember<Interpolation>>>& result) const
{
ASSERT(iteration >= 0);

Powered by Google App Engine
This is Rietveld 408576698