| Index: Source/core/animation/animatable/AnimatableValueKeyframe.cpp
|
| diff --git a/Source/core/animation/animatable/AnimatableValueKeyframe.cpp b/Source/core/animation/animatable/AnimatableValueKeyframe.cpp
|
| index 6f15ead7f08f6f2170fcc3395ce987051e1f9228..5ef5873204f6b00df20315fadc31ad0295b4c531 100644
|
| --- a/Source/core/animation/animatable/AnimatableValueKeyframe.cpp
|
| +++ b/Source/core/animation/animatable/AnimatableValueKeyframe.cpp
|
| @@ -36,7 +36,7 @@ PassOwnPtrWillBeRawPtr<Keyframe::PropertySpecificKeyframe> AnimatableValueKeyfra
|
| return adoptPtrWillBeNoop(new PropertySpecificKeyframe(offset(), &easing(), propertyValue(property), composite()));
|
| }
|
|
|
| -void AnimatableValueKeyframe::trace(Visitor* visitor)
|
| +DEFINE_TRACE(AnimatableValueKeyframe)
|
| {
|
| #if ENABLE(OILPAN)
|
| visitor->trace(m_propertyValues);
|
| @@ -73,7 +73,7 @@ PassOwnPtrWillBeRawPtr<Keyframe::PropertySpecificKeyframe> AnimatableValueKeyfra
|
| return adoptPtrWillBeNoop(new AnimatableValueKeyframe::PropertySpecificKeyframe(offset, easing, AnimatableValue::neutralValue(), AnimationEffect::CompositeAdd));
|
| }
|
|
|
| -void AnimatableValueKeyframe::PropertySpecificKeyframe::trace(Visitor* visitor)
|
| +DEFINE_TRACE(AnimatableValueKeyframe::PropertySpecificKeyframe)
|
| {
|
| visitor->trace(m_value);
|
| Keyframe::PropertySpecificKeyframe::trace(visitor);
|
|
|