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

Unified Diff: Source/core/animation/ActiveAnimations.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
« no previous file with comments | « no previous file | Source/core/animation/ActiveAnimations.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/animation/ActiveAnimations.h
diff --git a/Source/core/animation/ActiveAnimations.h b/Source/core/animation/ActiveAnimations.h
index 1805b15fe35c187c3ac1548176358deb58899d0b..2e6c8daf9a4f4abf6737183cd86266e7d1bd2288 100644
--- a/Source/core/animation/ActiveAnimations.h
+++ b/Source/core/animation/ActiveAnimations.h
@@ -61,7 +61,7 @@ public:
CSSAnimations& cssAnimations() { return m_cssAnimations; }
const CSSAnimations& cssAnimations() const { return m_cssAnimations; }
- typedef HashCountedSet<AnimationPlayer*> AnimationPlayerSet;
+ typedef WillBeHeapHashSet<RawPtrWillBeWeakMember<AnimationPlayer> > AnimationPlayerSet;
dstockwell 2014/04/15 05:02:43 Is there a HeapHashCountedSet? Although we don't r
haraken 2014/04/15 05:03:56 Not yet, and that means that we need to implement
// AnimationPlayers which have animations targeting this element.
const AnimationPlayerSet& players() const { return m_players; }
AnimationPlayerSet& players() { return m_players; }
« no previous file with comments | « no previous file | Source/core/animation/ActiveAnimations.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698