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

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

Issue 210783002: Oilpan: Move Interpolation's hierarchy to oilpan's heap (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 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
« no previous file with comments | « no previous file | Source/core/animation/AnimationEffect.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/animation/Animation.h
diff --git a/Source/core/animation/Animation.h b/Source/core/animation/Animation.h
index 807cbbb26a65e935c034ef985a27c6fa1c4aff0a..b1bfd98918b4318758b3b62b99ea60da97fe1f47 100644
--- a/Source/core/animation/Animation.h
+++ b/Source/core/animation/Animation.h
@@ -72,7 +72,7 @@ public:
virtual bool isAnimation() const OVERRIDE { return true; }
- const Vector<RefPtr<Interpolation> >& activeInterpolations() const
+ const WillBeHeapVector<RefPtrWillBeMember<Interpolation> >& activeInterpolations() const
{
ASSERT(m_activeInterpolations);
return *m_activeInterpolations;
@@ -108,7 +108,7 @@ private:
RefPtrWillBePersistent<AnimationEffect> m_effect;
bool m_activeInAnimationStack;
- OwnPtr<Vector<RefPtr<Interpolation> > > m_activeInterpolations;
+ OwnPtrWillBePersistent<WillBeHeapVector<RefPtrWillBeMember<Interpolation> > > m_activeInterpolations;
Priority m_priority;
« no previous file with comments | « no previous file | Source/core/animation/AnimationEffect.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698