Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(65)

Unified Diff: Source/core/events/BeforeTextInsertedEvent.h

Issue 133133006: Update Event classes to use OVERRIDE / FINAL when needed (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « Source/core/events/BeforeLoadEvent.h ('k') | Source/core/events/BeforeUnloadEvent.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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; }
« no previous file with comments | « Source/core/events/BeforeLoadEvent.h ('k') | Source/core/events/BeforeUnloadEvent.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698