| Index: third_party/WebKit/Source/core/svg/SVGFilterElement.h
|
| diff --git a/third_party/WebKit/Source/core/svg/SVGFilterElement.h b/third_party/WebKit/Source/core/svg/SVGFilterElement.h
|
| index fa94876372e07c4c2293fc3530c63f78b7bc9b77..016e02888e457c0cf725660d22fb9acc628fade1 100644
|
| --- a/third_party/WebKit/Source/core/svg/SVGFilterElement.h
|
| +++ b/third_party/WebKit/Source/core/svg/SVGFilterElement.h
|
| @@ -41,7 +41,7 @@ class SVGResourceClient;
|
|
|
| class CORE_EXPORT SVGFilterElement final : public SVGElement, public SVGURIReference {
|
| DEFINE_WRAPPERTYPEINFO();
|
| - WILL_BE_USING_GARBAGE_COLLECTED_MIXIN(SVGFilterElement);
|
| + USING_GARBAGE_COLLECTED_MIXIN(SVGFilterElement);
|
| public:
|
| DECLARE_NODE_FACTORY(SVGFilterElement);
|
| DECLARE_VIRTUAL_TRACE();
|
| @@ -70,12 +70,12 @@ private:
|
|
|
| bool selfHasRelativeLengths() const override;
|
|
|
| - RefPtrWillBeMember<SVGAnimatedLength> m_x;
|
| - RefPtrWillBeMember<SVGAnimatedLength> m_y;
|
| - RefPtrWillBeMember<SVGAnimatedLength> m_width;
|
| - RefPtrWillBeMember<SVGAnimatedLength> m_height;
|
| - RefPtrWillBeMember<SVGAnimatedEnumeration<SVGUnitTypes::SVGUnitType>> m_filterUnits;
|
| - RefPtrWillBeMember<SVGAnimatedEnumeration<SVGUnitTypes::SVGUnitType>> m_primitiveUnits;
|
| + Member<SVGAnimatedLength> m_x;
|
| + Member<SVGAnimatedLength> m_y;
|
| + Member<SVGAnimatedLength> m_width;
|
| + Member<SVGAnimatedLength> m_height;
|
| + Member<SVGAnimatedEnumeration<SVGUnitTypes::SVGUnitType>> m_filterUnits;
|
| + Member<SVGAnimatedEnumeration<SVGUnitTypes::SVGUnitType>> m_primitiveUnits;
|
|
|
| HashSet<SVGResourceClient*> m_clientsToAdd;
|
| };
|
|
|