| Index: Source/core/editing/InsertNodeBeforeCommand.h
|
| diff --git a/Source/core/editing/InsertNodeBeforeCommand.h b/Source/core/editing/InsertNodeBeforeCommand.h
|
| index ccd662ab057374aa5c3ce361b119d871f9e1d021..423be756b213eae58b5a603b9a82a59872c58d4d 100644
|
| --- a/Source/core/editing/InsertNodeBeforeCommand.h
|
| +++ b/Source/core/editing/InsertNodeBeforeCommand.h
|
| @@ -30,7 +30,7 @@
|
|
|
| namespace blink {
|
|
|
| -class InsertNodeBeforeCommand FINAL : public SimpleEditCommand {
|
| +class InsertNodeBeforeCommand final : public SimpleEditCommand {
|
| public:
|
| static PassRefPtrWillBeRawPtr<InsertNodeBeforeCommand> create(PassRefPtrWillBeRawPtr<Node> childToInsert, PassRefPtrWillBeRawPtr<Node> childToInsertBefore,
|
| ShouldAssumeContentIsAlwaysEditable shouldAssumeContentIsAlwaysEditable)
|
| @@ -38,13 +38,13 @@ public:
|
| return adoptRefWillBeNoop(new InsertNodeBeforeCommand(childToInsert, childToInsertBefore, shouldAssumeContentIsAlwaysEditable));
|
| }
|
|
|
| - virtual void trace(Visitor*) OVERRIDE;
|
| + virtual void trace(Visitor*) override;
|
|
|
| private:
|
| InsertNodeBeforeCommand(PassRefPtrWillBeRawPtr<Node> childToInsert, PassRefPtrWillBeRawPtr<Node> childToInsertBefore, ShouldAssumeContentIsAlwaysEditable);
|
|
|
| - virtual void doApply() OVERRIDE;
|
| - virtual void doUnapply() OVERRIDE;
|
| + virtual void doApply() override;
|
| + virtual void doUnapply() override;
|
|
|
| RefPtrWillBeMember<Node> m_insertChild;
|
| RefPtrWillBeMember<Node> m_refChild;
|
|
|