| Index: third_party/WebKit/Source/core/svg/SVGGradientElement.h
|
| diff --git a/third_party/WebKit/Source/core/svg/SVGGradientElement.h b/third_party/WebKit/Source/core/svg/SVGGradientElement.h
|
| index b77dbaafcb170e963a03212f04d2b36d80874a9d..9cd615beef8cf991231c6b98656e2ce42d5ba30c 100644
|
| --- a/third_party/WebKit/Source/core/svg/SVGGradientElement.h
|
| +++ b/third_party/WebKit/Source/core/svg/SVGGradientElement.h
|
| @@ -43,7 +43,7 @@ template<> const SVGEnumerationStringEntries& getStaticStringEntries<SVGSpreadMe
|
| class SVGGradientElement : public SVGElement,
|
| public SVGURIReference {
|
| DEFINE_WRAPPERTYPEINFO();
|
| - WILL_BE_USING_GARBAGE_COLLECTED_MIXIN(SVGGradientElement);
|
| + USING_GARBAGE_COLLECTED_MIXIN(SVGGradientElement);
|
| public:
|
| Vector<Gradient::ColorStop> buildStops();
|
|
|
| @@ -63,9 +63,9 @@ private:
|
|
|
| void childrenChanged(const ChildrenChange&) final;
|
|
|
| - RefPtrWillBeMember<SVGAnimatedTransformList> m_gradientTransform;
|
| - RefPtrWillBeMember<SVGAnimatedEnumeration<SVGSpreadMethodType>> m_spreadMethod;
|
| - RefPtrWillBeMember<SVGAnimatedEnumeration<SVGUnitTypes::SVGUnitType>> m_gradientUnits;
|
| + Member<SVGAnimatedTransformList> m_gradientTransform;
|
| + Member<SVGAnimatedEnumeration<SVGSpreadMethodType>> m_spreadMethod;
|
| + Member<SVGAnimatedEnumeration<SVGUnitTypes::SVGUnitType>> m_gradientUnits;
|
| };
|
|
|
| inline bool isSVGGradientElement(const SVGElement& element)
|
|
|