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

Unified Diff: Source/core/animation/css/CSSAnimations.h

Issue 1318543009: Oilpan: Partially ship Oilpan for core/animations (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 3 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/css/CSSAnimationUpdate.h ('k') | Source/core/animation/css/CSSAnimations.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/animation/css/CSSAnimations.h
diff --git a/Source/core/animation/css/CSSAnimations.h b/Source/core/animation/css/CSSAnimations.h
index fbc767dd0fd424140cac3b0d109ff109cd5d9390..61e4abb13d39615294a03f40fccb7b05e3527140 100644
--- a/Source/core/animation/css/CSSAnimations.h
+++ b/Source/core/animation/css/CSSAnimations.h
@@ -79,9 +79,9 @@ public:
DECLARE_TRACE();
private:
- class RunningAnimation final : public RefCountedWillBeGarbageCollectedFinalized<RunningAnimation> {
+ class RunningAnimation final : public GarbageCollectedFinalized<RunningAnimation> {
public:
- RunningAnimation(PassRefPtrWillBeRawPtr<Animation> animation, CSSAnimationUpdate::NewAnimation newAnimation)
+ RunningAnimation(Animation* animation, CSSAnimationUpdate::NewAnimation newAnimation)
: animation(animation)
, specifiedTiming(newAnimation.timing)
, styleRule(newAnimation.styleRule)
@@ -102,7 +102,7 @@ private:
visitor->trace(styleRule);
}
- RefPtrWillBeMember<Animation> animation;
+ Member<Animation> animation;
Timing specifiedTiming;
RefPtrWillBeMember<StyleRuleKeyframes> styleRule;
unsigned styleRuleVersion;
@@ -118,15 +118,15 @@ private:
visitor->trace(to);
}
- RefPtrWillBeMember<Animation> animation;
+ Member<Animation> animation;
RawPtrWillBeMember<const AnimatableValue> from;
RawPtrWillBeMember<const AnimatableValue> to;
};
- using AnimationMap = WillBeHeapHashMap<AtomicString, RefPtrWillBeMember<RunningAnimation>>;
+ using AnimationMap = HeapHashMap<AtomicString, Member<RunningAnimation>>;
AnimationMap m_animations;
- using TransitionMap = WillBeHeapHashMap<CSSPropertyID, RunningTransition>;
+ using TransitionMap = HeapHashMap<CSSPropertyID, RunningTransition>;
TransitionMap m_transitions;
CSSAnimationUpdate m_pendingUpdate;
« no previous file with comments | « Source/core/animation/css/CSSAnimationUpdate.h ('k') | Source/core/animation/css/CSSAnimations.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698