| Index: Source/core/editing/RemoveNodeCommand.h
|
| diff --git a/Source/core/editing/RemoveNodeCommand.h b/Source/core/editing/RemoveNodeCommand.h
|
| index 9eb9b223f4d9de3b96e1f8ec94556e7c93415e48..cad32970fa3544232654fa575831da15a1762e50 100644
|
| --- a/Source/core/editing/RemoveNodeCommand.h
|
| +++ b/Source/core/editing/RemoveNodeCommand.h
|
| @@ -30,20 +30,20 @@
|
|
|
| namespace blink {
|
|
|
| -class RemoveNodeCommand FINAL : public SimpleEditCommand {
|
| +class RemoveNodeCommand final : public SimpleEditCommand {
|
| public:
|
| static PassRefPtrWillBeRawPtr<RemoveNodeCommand> create(PassRefPtrWillBeRawPtr<Node> node, ShouldAssumeContentIsAlwaysEditable shouldAssumeContentIsAlwaysEditable)
|
| {
|
| return adoptRefWillBeNoop(new RemoveNodeCommand(node, shouldAssumeContentIsAlwaysEditable));
|
| }
|
|
|
| - virtual void trace(Visitor*) OVERRIDE;
|
| + virtual void trace(Visitor*) override;
|
|
|
| private:
|
| explicit RemoveNodeCommand(PassRefPtrWillBeRawPtr<Node>, ShouldAssumeContentIsAlwaysEditable);
|
|
|
| - virtual void doApply() OVERRIDE;
|
| - virtual void doUnapply() OVERRIDE;
|
| + virtual void doApply() override;
|
| + virtual void doUnapply() override;
|
|
|
| RefPtrWillBeMember<Node> m_node;
|
| RefPtrWillBeMember<ContainerNode> m_parent;
|
|
|