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

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

Issue 1276183004: Oilpan: Unship oilpan from temporary animation objects (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
Index: Source/core/animation/css/CSSAnimations.h
diff --git a/Source/core/animation/css/CSSAnimations.h b/Source/core/animation/css/CSSAnimations.h
index 61e4abb13d39615294a03f40fccb7b05e3527140..f2eecba7b6433ffa17ad2b8a6f5324b4ebcff0d6 100644
--- a/Source/core/animation/css/CSSAnimations.h
+++ b/Source/core/animation/css/CSSAnimations.h
@@ -114,13 +114,11 @@ private:
DEFINE_INLINE_TRACE()
{
visitor->trace(animation);
- visitor->trace(from);
- visitor->trace(to);
}
Member<Animation> animation;
- RawPtrWillBeMember<const AnimatableValue> from;
- RawPtrWillBeMember<const AnimatableValue> to;
+ const AnimatableValue* from;
+ const AnimatableValue* to;
};
using AnimationMap = HeapHashMap<AtomicString, Member<RunningAnimation>>;

Powered by Google App Engine
This is Rietveld 408576698