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

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

Issue 1227783004: Fix virtual/override/final usage in Source/modules/. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: rebase Created 5 years, 5 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/MIDIMessageEvent.h ('k') | Source/modules/websockets/CloseEvent.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 08aa1b11ab4921e80b1f77100c5408efef4c6628..96066ce8dc58cdb4474c668ad402594ae3477c4c 100644
--- a/Source/modules/webmidi/MIDIPort.h
+++ b/Source/modules/webmidi/MIDIPort.h
@@ -58,7 +58,7 @@ public:
TypeOutput
};
- virtual ~MIDIPort() { }
+ ~MIDIPort() override { }
String connection() const;
String id() const { return m_id; }
@@ -82,7 +82,7 @@ public:
// EventTarget
const AtomicString& interfaceName() const override { return EventTargetNames::MIDIPort; }
- ExecutionContext* executionContext() const override final;
+ ExecutionContext* executionContext() const final;
// ActiveDOMObject
bool hasPendingActivity() const override;
« no previous file with comments | « Source/modules/webmidi/MIDIMessageEvent.h ('k') | Source/modules/websockets/CloseEvent.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698