| Index: Source/core/editing/RemoveCSSPropertyCommand.h
|
| diff --git a/Source/core/editing/RemoveCSSPropertyCommand.h b/Source/core/editing/RemoveCSSPropertyCommand.h
|
| index 90dc5753f278e704fe4b30c57f6f5a01ae9f3575..df3ecca2abac52727f9ec69f23d7326977215f5a 100644
|
| --- a/Source/core/editing/RemoveCSSPropertyCommand.h
|
| +++ b/Source/core/editing/RemoveCSSPropertyCommand.h
|
| @@ -33,21 +33,21 @@ namespace blink {
|
|
|
| class Element;
|
|
|
| -class RemoveCSSPropertyCommand FINAL : public SimpleEditCommand {
|
| +class RemoveCSSPropertyCommand final : public SimpleEditCommand {
|
| public:
|
| static PassRefPtrWillBeRawPtr<RemoveCSSPropertyCommand> create(Document& document, PassRefPtrWillBeRawPtr<Element> element, CSSPropertyID property)
|
| {
|
| return adoptRefWillBeNoop(new RemoveCSSPropertyCommand(document, element, property));
|
| }
|
|
|
| - virtual void trace(Visitor*) OVERRIDE;
|
| + virtual void trace(Visitor*) override;
|
|
|
| private:
|
| RemoveCSSPropertyCommand(Document&, PassRefPtrWillBeRawPtr<Element>, CSSPropertyID);
|
| virtual ~RemoveCSSPropertyCommand();
|
|
|
| - virtual void doApply() OVERRIDE;
|
| - virtual void doUnapply() OVERRIDE;
|
| + virtual void doApply() override;
|
| + virtual void doUnapply() override;
|
|
|
| RefPtrWillBeMember<Element> m_element;
|
| CSSPropertyID m_property;
|
|
|