Update To 11.40.268.0
[platform/framework/web/crosswalk.git] / src / third_party / WebKit / Source / core / events / BeforeTextInsertedEvent.h
index 6e783a2..9e03efc 100644 (file)
@@ -30,7 +30,7 @@
 
 namespace blink {
 
-class BeforeTextInsertedEvent FINAL : public Event {
+class BeforeTextInsertedEvent final : public Event {
 public:
     virtual ~BeforeTextInsertedEvent();
 
@@ -39,13 +39,13 @@ public:
         return adoptRefWillBeNoop(new BeforeTextInsertedEvent(text));
     }
 
-    virtual const AtomicString& interfaceName() const OVERRIDE;
-    virtual bool isBeforeTextInsertedEvent() const OVERRIDE { return true; }
+    virtual const AtomicString& interfaceName() const override;
+    virtual bool isBeforeTextInsertedEvent() const override { return true; }
 
     const String& text() const { return m_text; }
     void setText(const String& s) { m_text = s; }
 
-    virtual void trace(Visitor*) OVERRIDE;
+    virtual void trace(Visitor*) override;
 
 private:
     explicit BeforeTextInsertedEvent(const String&);