Index: Source/modules/webmidi/MIDIController.h |
diff --git a/Source/modules/webmidi/MIDIController.h b/Source/modules/webmidi/MIDIController.h |
index 49d893aa83655d11fd56fded1c07836f4a701720..cf9f94dabde05720034e6e19370ef21c0157824d 100644 |
--- a/Source/modules/webmidi/MIDIController.h |
+++ b/Source/modules/webmidi/MIDIController.h |
@@ -39,7 +39,7 @@ namespace blink { |
class MIDIAccessInitializer; |
class MIDIClient; |
-class MIDIController FINAL : public NoBaseWillBeGarbageCollectedFinalized<MIDIController>, public WillBeHeapSupplement<LocalFrame> { |
+class MIDIController final : public NoBaseWillBeGarbageCollectedFinalized<MIDIController>, public WillBeHeapSupplement<LocalFrame> { |
WILL_BE_USING_GARBAGE_COLLECTED_MIXIN(MIDIController); |
public: |
virtual ~MIDIController(); |
@@ -51,7 +51,7 @@ public: |
static const char* supplementName(); |
static MIDIController* from(LocalFrame* frame) { return static_cast<MIDIController*>(WillBeHeapSupplement<LocalFrame>::from(frame, supplementName())); } |
- virtual void trace(Visitor* visitor) OVERRIDE { WillBeHeapSupplement<LocalFrame>::trace(visitor); } |
+ virtual void trace(Visitor* visitor) override { WillBeHeapSupplement<LocalFrame>::trace(visitor); } |
protected: |
explicit MIDIController(PassOwnPtr<MIDIClient>); |