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

Unified Diff: Source/core/animation/InertAnimation.h

Issue 732153003: Update a result vector when sampling animation effects. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 1 month 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
« no previous file with comments | « Source/core/animation/AnimationStack.cpp ('k') | Source/core/animation/InertAnimation.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/animation/InertAnimation.h
diff --git a/Source/core/animation/InertAnimation.h b/Source/core/animation/InertAnimation.h
index b85c8530a01dd5d3fc5f0f91588d1b9fcf9685a1..5283998bdac722bfd40262c2b1e7b8da63a950ac 100644
--- a/Source/core/animation/InertAnimation.h
+++ b/Source/core/animation/InertAnimation.h
@@ -40,7 +40,7 @@ namespace blink {
class InertAnimation final : public AnimationNode {
public:
static PassRefPtrWillBeRawPtr<InertAnimation> create(PassRefPtrWillBeRawPtr<AnimationEffect>, const Timing&, bool paused);
- PassOwnPtrWillBeRawPtr<WillBeHeapVector<RefPtrWillBeMember<Interpolation> > > sample(double inheritedTime);
+ void sample(double inheritedTime, OwnPtrWillBeRawPtr<WillBeHeapVector<RefPtrWillBeMember<Interpolation>>>&);
AnimationEffect* effect() const { return m_effect.get(); }
bool paused() const { return m_paused; }
« no previous file with comments | « Source/core/animation/AnimationStack.cpp ('k') | Source/core/animation/InertAnimation.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698