| Index: Source/core/events/BeforeTextInsertedEvent.h
|
| diff --git a/Source/core/events/BeforeTextInsertedEvent.h b/Source/core/events/BeforeTextInsertedEvent.h
|
| index 546c4fb7364e1836efe0264221bbfc6217b748e7..44f0434fa190106fde086d8ba67bf7a6f86dc2e2 100644
|
| --- a/Source/core/events/BeforeTextInsertedEvent.h
|
| +++ b/Source/core/events/BeforeTextInsertedEvent.h
|
| @@ -30,7 +30,7 @@
|
|
|
| namespace WebCore {
|
|
|
| -class BeforeTextInsertedEvent : public Event {
|
| +class BeforeTextInsertedEvent FINAL : public Event {
|
| public:
|
| virtual ~BeforeTextInsertedEvent();
|
|
|
| @@ -39,8 +39,8 @@ public:
|
| return adoptRef(new BeforeTextInsertedEvent(text));
|
| }
|
|
|
| - virtual const AtomicString& interfaceName() const;
|
| - virtual bool isBeforeTextInsertedEvent() const { 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; }
|
|
|