| Index: Source/core/animation/AnimationEffect.h
|
| diff --git a/Source/core/animation/AnimationEffect.h b/Source/core/animation/AnimationEffect.h
|
| index ff659913b6b960d45c763fe41fec2a33425c42f7..ced652b2429dd4505f95bb650e92b9229122f95b 100644
|
| --- a/Source/core/animation/AnimationEffect.h
|
| +++ b/Source/core/animation/AnimationEffect.h
|
| @@ -44,7 +44,7 @@ namespace blink {
|
|
|
| class Interpolation;
|
|
|
| -class CORE_EXPORT AnimationEffect : public RefCountedWillBeGarbageCollectedFinalized<AnimationEffect>, public ScriptWrappable {
|
| +class CORE_EXPORT AnimationEffect : public GarbageCollectedFinalized<AnimationEffect>, public ScriptWrappable {
|
| DEFINE_WRAPPERTYPEINFO();
|
| public:
|
| enum CompositeOperation {
|
| @@ -54,7 +54,7 @@ public:
|
|
|
| AnimationEffect() { }
|
| virtual ~AnimationEffect() { }
|
| - virtual void sample(int iteration, double fraction, double iterationDuration, OwnPtrWillBeRawPtr<WillBeHeapVector<RefPtrWillBeMember<Interpolation>>>&) const = 0;
|
| + virtual void sample(int iteration, double fraction, double iterationDuration, HeapVector<Member<Interpolation>>*&) const = 0;
|
|
|
| virtual bool affects(PropertyHandle) const { return false; };
|
| virtual bool isKeyframeEffectModel() const { return false; }
|
|
|