| Index: third_party/WebKit/Source/core/svg/SVGTextPathElement.h
|
| diff --git a/third_party/WebKit/Source/core/svg/SVGTextPathElement.h b/third_party/WebKit/Source/core/svg/SVGTextPathElement.h
|
| index 5b88a780a30f93f3a3d62f1a527a62c6ad25f0af..09dfbf30e707714ad344ac74e0bd6af55b82ab7a 100644
|
| --- a/third_party/WebKit/Source/core/svg/SVGTextPathElement.h
|
| +++ b/third_party/WebKit/Source/core/svg/SVGTextPathElement.h
|
| @@ -45,7 +45,7 @@ template<> const SVGEnumerationStringEntries& getStaticStringEntries<SVGTextPath
|
| class SVGTextPathElement final : public SVGTextContentElement,
|
| public SVGURIReference {
|
| DEFINE_WRAPPERTYPEINFO();
|
| - WILL_BE_USING_GARBAGE_COLLECTED_MIXIN(SVGTextPathElement);
|
| + USING_GARBAGE_COLLECTED_MIXIN(SVGTextPathElement);
|
| public:
|
| // Forward declare enumerations in the W3C naming scheme, for IDL generation.
|
| enum {
|
| @@ -83,9 +83,9 @@ private:
|
|
|
| bool selfHasRelativeLengths() const override;
|
|
|
| - RefPtrWillBeMember<SVGAnimatedLength> m_startOffset;
|
| - RefPtrWillBeMember<SVGAnimatedEnumeration<SVGTextPathMethodType>> m_method;
|
| - RefPtrWillBeMember<SVGAnimatedEnumeration<SVGTextPathSpacingType>> m_spacing;
|
| + Member<SVGAnimatedLength> m_startOffset;
|
| + Member<SVGAnimatedEnumeration<SVGTextPathMethodType>> m_method;
|
| + Member<SVGAnimatedEnumeration<SVGTextPathSpacingType>> m_spacing;
|
| };
|
|
|
| } // namespace blink
|
|
|