| Index: Source/core/editing/UnlinkCommand.h
|
| diff --git a/Source/core/editing/UnlinkCommand.h b/Source/core/editing/UnlinkCommand.h
|
| index 6cdd6a81724d81daad84dc5415b836dc3675cbea..660d572b8666c74bc1c413eb98174c295b5be3c5 100644
|
| --- a/Source/core/editing/UnlinkCommand.h
|
| +++ b/Source/core/editing/UnlinkCommand.h
|
| @@ -30,7 +30,7 @@
|
|
|
| namespace blink {
|
|
|
| -class UnlinkCommand FINAL : public CompositeEditCommand {
|
| +class UnlinkCommand final : public CompositeEditCommand {
|
| public:
|
| static PassRefPtrWillBeRawPtr<UnlinkCommand> create(Document& document)
|
| {
|
| @@ -40,8 +40,8 @@ public:
|
| private:
|
| explicit UnlinkCommand(Document&);
|
|
|
| - virtual void doApply() OVERRIDE;
|
| - virtual EditAction editingAction() const OVERRIDE { return EditActionUnlink; }
|
| + virtual void doApply() override;
|
| + virtual EditAction editingAction() const override { return EditActionUnlink; }
|
| };
|
|
|
| } // namespace blink
|
|
|