| Index: Source/core/events/TextEvent.h
|
| diff --git a/Source/core/events/TextEvent.h b/Source/core/events/TextEvent.h
|
| index 0b4d4fd8ce55d12dfcd6c6189cfc72446415861d..8b37094fdf265b679764b03385ba25a7acc1d710 100644
|
| --- a/Source/core/events/TextEvent.h
|
| +++ b/Source/core/events/TextEvent.h
|
| @@ -43,13 +43,13 @@ public:
|
| static PassRefPtrWillBeRawPtr<TextEvent> createForFragmentPaste(PassRefPtrWillBeRawPtr<AbstractView>, PassRefPtrWillBeRawPtr<DocumentFragment> data, bool shouldSmartReplace, bool shouldMatchStyle);
|
| static PassRefPtrWillBeRawPtr<TextEvent> createForDrop(PassRefPtrWillBeRawPtr<AbstractView>, const String& data);
|
|
|
| - virtual ~TextEvent();
|
| + ~TextEvent() override;
|
|
|
| void initTextEvent(const AtomicString& type, bool canBubble, bool cancelable, PassRefPtrWillBeRawPtr<AbstractView>, const String& data);
|
|
|
| String data() const { return m_data; }
|
|
|
| - virtual const AtomicString& interfaceName() const override;
|
| + const AtomicString& interfaceName() const override;
|
|
|
| bool isLineBreak() const { return m_inputType == TextEventInputLineBreak; }
|
| bool isComposition() const { return m_inputType == TextEventInputComposition; }
|
|
|