| Index: third_party/WebKit/Source/core/svg/SVGFilterPrimitiveStandardAttributes.h
|
| diff --git a/third_party/WebKit/Source/core/svg/SVGFilterPrimitiveStandardAttributes.h b/third_party/WebKit/Source/core/svg/SVGFilterPrimitiveStandardAttributes.h
|
| index dea970ce25d419d58ee0385951cb6d134c406e48..5d8465b9b05f393ab6c4fcc134c4fd63c6df5ee5 100644
|
| --- a/third_party/WebKit/Source/core/svg/SVGFilterPrimitiveStandardAttributes.h
|
| +++ b/third_party/WebKit/Source/core/svg/SVGFilterPrimitiveStandardAttributes.h
|
| @@ -41,7 +41,7 @@ class SVGFilterPrimitiveStandardAttributes : public SVGElement {
|
| public:
|
| void setStandardAttributes(FilterEffect*) const;
|
|
|
| - virtual PassRefPtrWillBeRawPtr<FilterEffect> build(SVGFilterBuilder*, Filter*) = 0;
|
| + virtual RawPtr<FilterEffect> build(SVGFilterBuilder*, Filter*) = 0;
|
| // Returns true, if the new value is different from the old one.
|
| virtual bool setFilterEffectAttribute(FilterEffect*, const QualifiedName&);
|
|
|
| @@ -71,11 +71,11 @@ private:
|
| LayoutObject* createLayoutObject(const ComputedStyle&) override;
|
| bool layoutObjectIsNeeded(const ComputedStyle&) final;
|
|
|
| - RefPtrWillBeMember<SVGAnimatedLength> m_x;
|
| - RefPtrWillBeMember<SVGAnimatedLength> m_y;
|
| - RefPtrWillBeMember<SVGAnimatedLength> m_width;
|
| - RefPtrWillBeMember<SVGAnimatedLength> m_height;
|
| - RefPtrWillBeMember<SVGAnimatedString> m_result;
|
| + Member<SVGAnimatedLength> m_x;
|
| + Member<SVGAnimatedLength> m_y;
|
| + Member<SVGAnimatedLength> m_width;
|
| + Member<SVGAnimatedLength> m_height;
|
| + Member<SVGAnimatedString> m_result;
|
| };
|
|
|
| void invalidateFilterPrimitiveParent(SVGElement*);
|
|
|