Index: Source/core/html/HTMLInputElement.cpp |
diff --git a/Source/core/html/HTMLInputElement.cpp b/Source/core/html/HTMLInputElement.cpp |
index 3af7be0eac333bf93b1ce14d18930446f0c6ae65..f9667a2078f2a7f3c827334862550c46beb18b78 100644 |
--- a/Source/core/html/HTMLInputElement.cpp |
+++ b/Source/core/html/HTMLInputElement.cpp |
@@ -89,7 +89,7 @@ class ListAttributeTargetObserver : public IdTargetObserver { |
WTF_MAKE_FAST_ALLOCATED_WILL_BE_REMOVED; |
public: |
static PassOwnPtrWillBeRawPtr<ListAttributeTargetObserver> create(const AtomicString& id, HTMLInputElement*); |
- virtual void trace(Visitor*) override; |
+ DECLARE_VIRTUAL_TRACE(); |
virtual void idTargetChanged() override; |
private: |
@@ -143,7 +143,7 @@ PassRefPtrWillBeRawPtr<HTMLInputElement> HTMLInputElement::create(Document& docu |
return inputElement.release(); |
} |
-void HTMLInputElement::trace(Visitor* visitor) |
+DEFINE_TRACE(HTMLInputElement) |
{ |
visitor->trace(m_inputType); |
visitor->trace(m_inputTypeView); |
@@ -1784,7 +1784,7 @@ ListAttributeTargetObserver::ListAttributeTargetObserver(const AtomicString& id, |
{ |
} |
-void ListAttributeTargetObserver::trace(Visitor* visitor) |
+DEFINE_TRACE(ListAttributeTargetObserver) |
{ |
visitor->trace(m_element); |
IdTargetObserver::trace(visitor); |