Update To 11.40.268.0
[platform/framework/web/crosswalk.git] / src / third_party / WebKit / Source / core / editing / RemoveCSSPropertyCommand.h
index 90dc575..df3ecca 100644 (file)
@@ -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;