Index: Source/core/events/TextEvent.h |
diff --git a/Source/core/events/TextEvent.h b/Source/core/events/TextEvent.h |
index 57615c0311e7db86eb87fcb1b6ae947e2af134ba..76402d102b6116558bb4eb6c07b52b016356adee 100644 |
--- a/Source/core/events/TextEvent.h |
+++ b/Source/core/events/TextEvent.h |
@@ -34,7 +34,7 @@ namespace blink { |
class DocumentFragment; |
-class TextEvent FINAL : public UIEvent { |
+class TextEvent final : public UIEvent { |
DEFINE_WRAPPERTYPEINFO(); |
public: |
static PassRefPtrWillBeRawPtr<TextEvent> create(); |
@@ -49,7 +49,7 @@ public: |
String data() const { return m_data; } |
- virtual const AtomicString& interfaceName() const OVERRIDE; |
+ virtual const AtomicString& interfaceName() const override; |
bool isLineBreak() const { return m_inputType == TextEventInputLineBreak; } |
bool isComposition() const { return m_inputType == TextEventInputComposition; } |
@@ -60,7 +60,7 @@ public: |
bool shouldMatchStyle() const { return m_shouldMatchStyle; } |
DocumentFragment* pastingFragment() const { return m_pastingFragment.get(); } |
- virtual void trace(Visitor*) OVERRIDE; |
+ virtual void trace(Visitor*) override; |
private: |
TextEvent(); |