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

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

Issue 225073004: Oilpan: Completely move core/animations/ to oilpan's heap (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 7 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
« no previous file with comments | « Source/core/animation/ElementAnimation.h ('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 43c50f3ba4bb6ef541d7d2737b5f911e99d92018..cb4a600b5c82d1ea67511d82fbe0a1e9dee7e3c5 100644
--- a/Source/core/animation/InertAnimation.h
+++ b/Source/core/animation/InertAnimation.h
@@ -38,21 +38,21 @@
namespace WebCore {
class InertAnimation FINAL : public TimedItem {
-
public:
- static PassRefPtr<InertAnimation> create(PassRefPtrWillBeRawPtr<AnimationEffect>, const Timing&, bool paused);
+ static PassRefPtrWillBeRawPtr<InertAnimation> create(PassRefPtrWillBeRawPtr<AnimationEffect>, const Timing&, bool paused);
PassOwnPtrWillBeRawPtr<WillBeHeapVector<RefPtrWillBeMember<Interpolation> > > sample(double inheritedTime);
AnimationEffect* effect() const { return m_effect.get(); }
bool paused() const { return m_paused; }
+ virtual void trace(Visitor*);
+
protected:
virtual void updateChildrenAndEffects() const OVERRIDE { }
- virtual void willDetach() OVERRIDE { }
virtual double calculateTimeToEffectChange(bool forwards, double inheritedTime, double timeToNextIteration) const OVERRIDE;
private:
InertAnimation(PassRefPtrWillBeRawPtr<AnimationEffect>, const Timing&, bool paused);
- RefPtrWillBePersistent<AnimationEffect> m_effect;
+ RefPtrWillBeMember<AnimationEffect> m_effect;
bool m_paused;
};
« no previous file with comments | « Source/core/animation/ElementAnimation.h ('k') | Source/core/animation/InertAnimation.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698