summaryrefslogtreecommitdiffstats
path: root/chromium/third_party/WebKit/Source/core/editing/ReplaceNodeWithSpanCommand.h
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/third_party/WebKit/Source/core/editing/ReplaceNodeWithSpanCommand.h')
-rw-r--r--chromium/third_party/WebKit/Source/core/editing/ReplaceNodeWithSpanCommand.h14
1 files changed, 8 insertions, 6 deletions
diff --git a/chromium/third_party/WebKit/Source/core/editing/ReplaceNodeWithSpanCommand.h b/chromium/third_party/WebKit/Source/core/editing/ReplaceNodeWithSpanCommand.h
index e9e8afeaa9a..6d1f13b132b 100644
--- a/chromium/third_party/WebKit/Source/core/editing/ReplaceNodeWithSpanCommand.h
+++ b/chromium/third_party/WebKit/Source/core/editing/ReplaceNodeWithSpanCommand.h
@@ -38,23 +38,25 @@ namespace WebCore {
class HTMLElement;
// More accurately, this is ReplaceElementWithSpanPreservingChildrenAndAttributesCommand
-class ReplaceNodeWithSpanCommand : public SimpleEditCommand {
+class ReplaceNodeWithSpanCommand FINAL : public SimpleEditCommand {
public:
- static PassRefPtr<ReplaceNodeWithSpanCommand> create(PassRefPtr<HTMLElement> element)
+ static PassRefPtrWillBeRawPtr<ReplaceNodeWithSpanCommand> create(PassRefPtrWillBeRawPtr<HTMLElement> element)
{
- return adoptRef(new ReplaceNodeWithSpanCommand(element));
+ return adoptRefWillBeNoop(new ReplaceNodeWithSpanCommand(element));
}
HTMLElement* spanElement() { return m_spanElement.get(); }
+ virtual void trace(Visitor*) OVERRIDE;
+
private:
- explicit ReplaceNodeWithSpanCommand(PassRefPtr<HTMLElement>);
+ explicit ReplaceNodeWithSpanCommand(PassRefPtrWillBeRawPtr<HTMLElement>);
virtual void doApply() OVERRIDE;
virtual void doUnapply() OVERRIDE;
- RefPtr<HTMLElement> m_elementToReplace;
- RefPtr<HTMLElement> m_spanElement;
+ RefPtrWillBeMember<HTMLElement> m_elementToReplace;
+ RefPtrWillBeMember<HTMLElement> m_spanElement;
};
} // namespace WebCore