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

Unified Diff: Source/web/EventListenerWrapper.h

Issue 135753002: Update web classes to use OVERRIDE / FINAL when needed (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Rebase 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/web/EditorClientImpl.h ('k') | Source/web/ExternalDateTimeChooser.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/web/EventListenerWrapper.h
diff --git a/Source/web/EventListenerWrapper.h b/Source/web/EventListenerWrapper.h
index 8b77270700b6fc2a9b9b12dcc7aeb6dd4bf7ea18..1b5007e5e23f655e38f368be5821735b95285b6f 100644
--- a/Source/web/EventListenerWrapper.h
+++ b/Source/web/EventListenerWrapper.h
@@ -43,13 +43,13 @@ class WebDOMEventListener;
// FIXME: Remove the DeprecatedEventListenerWrapper class below once Chromium
// switched to using WebDOMEvent.
-class EventListenerWrapper : public WebCore::EventListener {
+class EventListenerWrapper FINAL : public WebCore::EventListener {
public:
EventListenerWrapper(WebDOMEventListener*);
- ~EventListenerWrapper();
+ virtual ~EventListenerWrapper();
- virtual bool operator==(const WebCore::EventListener&);
- virtual void handleEvent(WebCore::ExecutionContext*, WebCore::Event*);
+ virtual bool operator==(const WebCore::EventListener&) OVERRIDE;
+ virtual void handleEvent(WebCore::ExecutionContext*, WebCore::Event*) OVERRIDE;
void webDOMEventListenerDeleted();
« no previous file with comments | « Source/web/EditorClientImpl.h ('k') | Source/web/ExternalDateTimeChooser.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698