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

Unified Diff: Source/core/animation/CompositorPendingAnimations.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, 8 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/CompositorPendingAnimations.h
diff --git a/Source/core/animation/CompositorPendingAnimations.h b/Source/core/animation/CompositorPendingAnimations.h
index 124309a1fb4bdca97d6d46303fba79d7baa298dc..53be35528f6a21bb314146b35ac9cda5aa9d6d39 100644
--- a/Source/core/animation/CompositorPendingAnimations.h
+++ b/Source/core/animation/CompositorPendingAnimations.h
@@ -31,6 +31,7 @@
#ifndef CompositorPendingAnimations_h
#define CompositorPendingAnimations_h
+#include "platform/heap/Handle.h"
#include "wtf/Vector.h"
namespace WebCore {
@@ -51,8 +52,8 @@ public:
void notifyCompositorAnimationStarted(double monotonicAnimationStartTime);
private:
- Vector<RefPtr<AnimationPlayer> > m_pending;
- Vector<RefPtr<AnimationPlayer> > m_waitingForCompositorAnimationStart;
+ WillBePersistentHeapVector<RefPtrWillBeMember<AnimationPlayer> > m_pending;
+ WillBePersistentHeapVector<RefPtrWillBeMember<AnimationPlayer> > m_waitingForCompositorAnimationStart;
};
} // namespace WebCore

Powered by Google App Engine
This is Rietveld 408576698