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

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

Issue 636833002: Replace FINAL and OVERRIDE with their C++11 counterparts in Source/core/events (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 2 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/TreeScopeEventContext.h ('k') | Source/core/events/WebKitAnimationEvent.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/events/UIEvent.h
diff --git a/Source/core/events/UIEvent.h b/Source/core/events/UIEvent.h
index 329b16d4f7698fd2b6c9cd57640027f4a4dfa50f..328b50fb46c42c39839077f832b0ea015f07d77c 100644
--- a/Source/core/events/UIEvent.h
+++ b/Source/core/events/UIEvent.h
@@ -61,8 +61,8 @@ public:
AbstractView* view() const { return m_view.get(); }
int detail() const { return m_detail; }
- virtual const AtomicString& interfaceName() const OVERRIDE;
- virtual bool isUIEvent() const OVERRIDE FINAL;
+ virtual const AtomicString& interfaceName() const override;
+ virtual bool isUIEvent() const override final;
virtual int keyCode() const;
virtual int charCode() const;
@@ -75,7 +75,7 @@ public:
virtual int which() const;
- virtual void trace(Visitor*) OVERRIDE;
+ virtual void trace(Visitor*) override;
protected:
UIEvent();
« no previous file with comments | « Source/core/events/TreeScopeEventContext.h ('k') | Source/core/events/WebKitAnimationEvent.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698