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

Unified Diff: Source/modules/webmidi/MIDIPort.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/MIDIOutput.h ('k') | Source/modules/webmidi/MIDIPortMap.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/modules/webmidi/MIDIPort.h
diff --git a/Source/modules/webmidi/MIDIPort.h b/Source/modules/webmidi/MIDIPort.h
index 6bcb8de54579fabf7307e8285cafa7dc9a0aaad7..4e4f31fe262cd850c2f6371f4eb557ecc2c24d11 100644
--- a/Source/modules/webmidi/MIDIPort.h
+++ b/Source/modules/webmidi/MIDIPort.h
@@ -58,13 +58,13 @@ public:
MIDIAccess* midiAccess() const { return m_access; }
- virtual void trace(Visitor*) OVERRIDE;
+ virtual void trace(Visitor*) override;
DEFINE_ATTRIBUTE_EVENT_LISTENER(disconnect);
// EventTarget
- virtual const AtomicString& interfaceName() const OVERRIDE { return EventTargetNames::MIDIPort; }
- virtual ExecutionContext* executionContext() const OVERRIDE FINAL;
+ virtual const AtomicString& interfaceName() const override { return EventTargetNames::MIDIPort; }
+ virtual ExecutionContext* executionContext() const override final;
protected:
MIDIPort(MIDIAccess*, const String& id, const String& manufacturer, const String& name, MIDIPortTypeCode, const String& version);
« no previous file with comments | « Source/modules/webmidi/MIDIOutput.h ('k') | Source/modules/webmidi/MIDIPortMap.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698