| Index: Source/core/editing/ReplaceSelectionCommand.h
|
| diff --git a/Source/core/editing/ReplaceSelectionCommand.h b/Source/core/editing/ReplaceSelectionCommand.h
|
| index 9c3d99984475a5b5d1d641abb896417ec70432b2..a58d4d63b8a89f2d5550477b664ffa26d4e838c5 100644
|
| --- a/Source/core/editing/ReplaceSelectionCommand.h
|
| +++ b/Source/core/editing/ReplaceSelectionCommand.h
|
| @@ -34,7 +34,7 @@ namespace blink {
|
| class DocumentFragment;
|
| class ReplacementFragment;
|
|
|
| -class ReplaceSelectionCommand FINAL : public CompositeEditCommand {
|
| +class ReplaceSelectionCommand final : public CompositeEditCommand {
|
| public:
|
| enum CommandOption {
|
| SelectReplacement = 1 << 0,
|
| @@ -52,13 +52,13 @@ public:
|
| return adoptRefWillBeNoop(new ReplaceSelectionCommand(document, fragment, options, action));
|
| }
|
|
|
| - virtual void trace(Visitor*) OVERRIDE;
|
| + virtual void trace(Visitor*) override;
|
|
|
| private:
|
| ReplaceSelectionCommand(Document&, PassRefPtrWillBeRawPtr<DocumentFragment>, CommandOptions, EditAction);
|
|
|
| - virtual void doApply() OVERRIDE;
|
| - virtual EditAction editingAction() const OVERRIDE;
|
| + virtual void doApply() override;
|
| + virtual EditAction editingAction() const override;
|
|
|
| class InsertedNodes {
|
| STACK_ALLOCATED();
|
|
|