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

Unified Diff: Source/core/events/CompositionEvent.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/ClipboardEvent.h ('k') | Source/core/events/CustomEvent.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/events/CompositionEvent.h
diff --git a/Source/core/events/CompositionEvent.h b/Source/core/events/CompositionEvent.h
index ca1b83ca32d44224a445a9e6e9c4534928cf50f8..4cf58e177b4f70c1b15bce3394b68dadc272f527 100644
--- a/Source/core/events/CompositionEvent.h
+++ b/Source/core/events/CompositionEvent.h
@@ -38,7 +38,7 @@ struct CompositionEventInit : UIEventInit {
String data;
};
-class CompositionEvent FINAL : public UIEvent {
+class CompositionEvent final : public UIEvent {
DEFINE_WRAPPERTYPEINFO();
public:
static PassRefPtrWillBeRawPtr<CompositionEvent> create()
@@ -65,9 +65,9 @@ public:
int activeSegmentEnd() const { return m_activeSegmentEnd; }
const Vector<unsigned>& getSegments() const { return m_segments; }
- virtual const AtomicString& interfaceName() const OVERRIDE;
+ virtual const AtomicString& interfaceName() const override;
- virtual void trace(Visitor*) OVERRIDE;
+ virtual void trace(Visitor*) override;
private:
CompositionEvent();
« no previous file with comments | « Source/core/events/ClipboardEvent.h ('k') | Source/core/events/CustomEvent.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698