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

Unified Diff: Source/core/events/ClipboardEvent.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/BeforeUnloadEvent.h ('k') | Source/core/events/CompositionEvent.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/events/ClipboardEvent.h
diff --git a/Source/core/events/ClipboardEvent.h b/Source/core/events/ClipboardEvent.h
index 671315b39f57aaa87bd660a124819b3e448740d4..28c816c14a2848c40abbb03ac3bd8f651cecfb36 100644
--- a/Source/core/events/ClipboardEvent.h
+++ b/Source/core/events/ClipboardEvent.h
@@ -30,7 +30,7 @@ namespace WebCore {
class Clipboard;
- class ClipboardEvent : public Event {
+ class ClipboardEvent FINAL : public Event {
public:
virtual ~ClipboardEvent();
@@ -43,7 +43,7 @@ namespace WebCore {
return adoptRef(new ClipboardEvent(type, canBubbleArg, cancelableArg, clipboardArg));
}
- Clipboard* clipboard() const { return m_clipboard.get(); }
+ virtual Clipboard* clipboard() const OVERRIDE { return m_clipboard.get(); }
private:
ClipboardEvent();
« no previous file with comments | « Source/core/events/BeforeUnloadEvent.h ('k') | Source/core/events/CompositionEvent.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698