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

Unified Diff: Source/modules/webmidi/MIDIInput.h

Issue 635813002: Replace FINAL and OVERRIDE with their C++11 counterparts in Source/modules/webmidi (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/modules/webmidi/MIDIController.h ('k') | Source/modules/webmidi/MIDIMessageEvent.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/modules/webmidi/MIDIInput.h
diff --git a/Source/modules/webmidi/MIDIInput.h b/Source/modules/webmidi/MIDIInput.h
index 18bfa347ccce96c9ff280eb4f2a53cdcfb597f87..c88594e6d90108eb67a0a87da85f2aae9739881d 100644
--- a/Source/modules/webmidi/MIDIInput.h
+++ b/Source/modules/webmidi/MIDIInput.h
@@ -38,7 +38,7 @@ namespace blink {
class MIDIAccess;
-class MIDIInput FINAL : public MIDIPort {
+class MIDIInput final : public MIDIPort {
DEFINE_WRAPPERTYPEINFO();
public:
static MIDIInput* create(MIDIAccess*, const String& id, const String& manufacturer, const String& name, const String& version);
@@ -47,12 +47,12 @@ public:
DEFINE_ATTRIBUTE_EVENT_LISTENER(midimessage);
// EventTarget
- virtual const AtomicString& interfaceName() const OVERRIDE { return EventTargetNames::MIDIInput; }
+ virtual const AtomicString& interfaceName() const override { return EventTargetNames::MIDIInput; }
// |timeStamp| is a DOMHighResTimeStamp in the time coordinate system of performance.now().
void didReceiveMIDIData(unsigned portIndex, const unsigned char* data, size_t length, double timeStamp);
- virtual void trace(Visitor*) OVERRIDE;
+ virtual void trace(Visitor*) override;
private:
MIDIInput(MIDIAccess*, const String& id, const String& manufacturer, const String& name, const String& version);
« no previous file with comments | « Source/modules/webmidi/MIDIController.h ('k') | Source/modules/webmidi/MIDIMessageEvent.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698