| Index: third_party/WebKit/Source/core/svg/SVGCursorElement.h
|
| diff --git a/third_party/WebKit/Source/core/svg/SVGCursorElement.h b/third_party/WebKit/Source/core/svg/SVGCursorElement.h
|
| index e41d8cbf13aa7e9dad474867f776f5978bd01eea..e41a303e7736b5f69e68e73ba1e669a485d869e0 100644
|
| --- a/third_party/WebKit/Source/core/svg/SVGCursorElement.h
|
| +++ b/third_party/WebKit/Source/core/svg/SVGCursorElement.h
|
| @@ -34,7 +34,7 @@ class SVGCursorElement final : public SVGElement,
|
| public SVGTests,
|
| public SVGURIReference {
|
| DEFINE_WRAPPERTYPEINFO();
|
| - WILL_BE_USING_GARBAGE_COLLECTED_MIXIN(SVGCursorElement);
|
| + USING_GARBAGE_COLLECTED_MIXIN(SVGCursorElement);
|
| public:
|
| DECLARE_NODE_FACTORY(SVGCursorElement);
|
|
|
| @@ -60,10 +60,10 @@ private:
|
|
|
| bool layoutObjectIsNeeded(const ComputedStyle&) override { return false; }
|
|
|
| - RefPtrWillBeMember<SVGAnimatedLength> m_x;
|
| - RefPtrWillBeMember<SVGAnimatedLength> m_y;
|
| + Member<SVGAnimatedLength> m_x;
|
| + Member<SVGAnimatedLength> m_y;
|
|
|
| - WillBeHeapHashSet<RawPtrWillBeWeakMember<SVGElement>> m_clients;
|
| + HeapHashSet<WeakMember<SVGElement>> m_clients;
|
| };
|
|
|
| } // namespace blink
|
|
|