| Index: Source/core/animation/AnimatableShadow.h
|
| diff --git a/Source/core/animation/AnimatableShadow.h b/Source/core/animation/AnimatableShadow.h
|
| index 3441c4c9a3da99c4bbf2219882309fb0d73e25ae..076ec3a07ea60951f5f751d4f5f3619f0b1aa990 100644
|
| --- a/Source/core/animation/AnimatableShadow.h
|
| +++ b/Source/core/animation/AnimatableShadow.h
|
| @@ -39,15 +39,17 @@ namespace WebCore {
|
| class AnimatableShadow FINAL : public AnimatableValue {
|
| public:
|
| virtual ~AnimatableShadow() { }
|
| - static PassRefPtr<AnimatableShadow> create(PassRefPtr<ShadowList> shadowList)
|
| + static PassRefPtrWillBeRawPtr<AnimatableShadow> create(PassRefPtr<ShadowList> shadowList)
|
| {
|
| - return adoptRef(new AnimatableShadow(shadowList));
|
| + return adoptRefWillBeNoop(new AnimatableShadow(shadowList));
|
| }
|
| ShadowList* shadowList() const { return m_shadowList.get(); }
|
|
|
| + virtual void trace(Visitor*) OVERRIDE { }
|
| +
|
| protected:
|
| - virtual PassRefPtr<AnimatableValue> interpolateTo(const AnimatableValue*, double fraction) const OVERRIDE;
|
| - virtual PassRefPtr<AnimatableValue> addWith(const AnimatableValue*) const OVERRIDE;
|
| + virtual PassRefPtrWillBeRawPtr<AnimatableValue> interpolateTo(const AnimatableValue*, double fraction) const OVERRIDE;
|
| + virtual PassRefPtrWillBeRawPtr<AnimatableValue> addWith(const AnimatableValue*) const OVERRIDE;
|
|
|
| private:
|
| explicit AnimatableShadow(PassRefPtr<ShadowList> shadowList)
|
|
|