Index: Source/core/inspector/DOMEditor.h |
diff --git a/Source/core/inspector/DOMEditor.h b/Source/core/inspector/DOMEditor.h |
index 29a771d1e2f43e31f421f37d0f9e36cb141a059e..00528cb09ef863dd81635cb4ef0fe5b5f8189f34 100644 |
--- a/Source/core/inspector/DOMEditor.h |
+++ b/Source/core/inspector/DOMEditor.h |
@@ -44,11 +44,13 @@ class Text; |
typedef String ErrorString; |
-class DOMEditor { |
- WTF_MAKE_NONCOPYABLE(DOMEditor); WTF_MAKE_FAST_ALLOCATED; |
+class DOMEditor FINAL : public NoBaseWillBeGarbageCollected<DOMEditor> { |
+ WTF_MAKE_NONCOPYABLE(DOMEditor); |
+ WTF_MAKE_FAST_ALLOCATED_WILL_BE_REMOVED; |
public: |
explicit DOMEditor(InspectorHistory*); |
- ~DOMEditor(); |
+ |
+ void trace(Visitor*); |
bool insertBefore(Node* parentNode, PassRefPtrWillBeRawPtr<Node>, Node* anchorNode, ExceptionState&); |
bool removeChild(Node* parentNode, Node*, ExceptionState&); |
@@ -77,7 +79,7 @@ private: |
class ReplaceChildNodeAction; |
class SetNodeValueAction; |
- InspectorHistory* m_history; |
+ RawPtrWillBeMember<InspectorHistory> m_history; |
}; |