| Index: Source/core/animation/EffectModel.h
|
| diff --git a/Source/core/animation/EffectModel.h b/Source/core/animation/EffectModel.h
|
| index 35583a993769e2804c682b26481525a4fc753342..16a01d509648923c1b19a71f8b9f5bb6fb5b24c4 100644
|
| --- a/Source/core/animation/EffectModel.h
|
| +++ b/Source/core/animation/EffectModel.h
|
| @@ -44,7 +44,7 @@ namespace blink {
|
|
|
| class Interpolation;
|
|
|
| -class CORE_EXPORT EffectModel : public RefCountedWillBeGarbageCollectedFinalized<EffectModel>, public ScriptWrappable {
|
| +class CORE_EXPORT EffectModel : public GarbageCollectedFinalized<EffectModel>, public ScriptWrappable {
|
| DEFINE_WRAPPERTYPEINFO();
|
| public:
|
| enum CompositeOperation {
|
| @@ -54,7 +54,7 @@ public:
|
|
|
| EffectModel() { }
|
| virtual ~EffectModel() { }
|
| - 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 isTransformRelatedEffect() const { return false; }
|
|
|