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

Unified Diff: Source/core/events/MutationEvent.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/MouseRelatedEvent.h ('k') | Source/core/events/OverflowEvent.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/events/MutationEvent.h
diff --git a/Source/core/events/MutationEvent.h b/Source/core/events/MutationEvent.h
index f0ef13e5b6c90b804b5027a4efc9ec95d6cf8038..e2e9f56ac140308bf09e819aa5e1ac09b15b82b0 100644
--- a/Source/core/events/MutationEvent.h
+++ b/Source/core/events/MutationEvent.h
@@ -29,7 +29,7 @@
namespace WebCore {
- class MutationEvent : public Event {
+ class MutationEvent FINAL : public Event {
public:
virtual ~MutationEvent();
@@ -60,7 +60,7 @@ namespace WebCore {
String attrName() const { return m_attrName; }
unsigned short attrChange() const { return m_attrChange; }
- virtual const AtomicString& interfaceName() const;
+ virtual const AtomicString& interfaceName() const OVERRIDE;
private:
MutationEvent();
« no previous file with comments | « Source/core/events/MouseRelatedEvent.h ('k') | Source/core/events/OverflowEvent.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698