| Index: Source/core/editing/SetNodeAttributeCommand.h
|
| diff --git a/Source/core/editing/SetNodeAttributeCommand.h b/Source/core/editing/SetNodeAttributeCommand.h
|
| index 59eb6e4eccb7b5bd850e2b1fcf4ae5f4ea819e57..b36dd40f3b81800f4b8d640d5f02316e0503fa52 100644
|
| --- a/Source/core/editing/SetNodeAttributeCommand.h
|
| +++ b/Source/core/editing/SetNodeAttributeCommand.h
|
| @@ -31,20 +31,20 @@
|
|
|
| namespace blink {
|
|
|
| -class SetNodeAttributeCommand FINAL : public SimpleEditCommand {
|
| +class SetNodeAttributeCommand final : public SimpleEditCommand {
|
| public:
|
| static PassRefPtrWillBeRawPtr<SetNodeAttributeCommand> create(PassRefPtrWillBeRawPtr<Element> element, const QualifiedName& attribute, const AtomicString& value)
|
| {
|
| return adoptRefWillBeNoop(new SetNodeAttributeCommand(element, attribute, value));
|
| }
|
|
|
| - virtual void trace(Visitor*) OVERRIDE;
|
| + virtual void trace(Visitor*) override;
|
|
|
| private:
|
| SetNodeAttributeCommand(PassRefPtrWillBeRawPtr<Element>, const QualifiedName& attribute, const AtomicString& value);
|
|
|
| - virtual void doApply() OVERRIDE;
|
| - virtual void doUnapply() OVERRIDE;
|
| + virtual void doApply() override;
|
| + virtual void doUnapply() override;
|
|
|
| RefPtrWillBeMember<Element> m_element;
|
| QualifiedName m_attribute;
|
|
|