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

Unified Diff: Source/modules/webmidi/NavigatorWebMIDI.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/MIDIPortMap.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/modules/webmidi/NavigatorWebMIDI.h
diff --git a/Source/modules/webmidi/NavigatorWebMIDI.h b/Source/modules/webmidi/NavigatorWebMIDI.h
index 67fe32f754e35224574d59d97b8f2ff3b2a006cf..f884ba3963a638e9f7d3307aad788edeb25aa28a 100644
--- a/Source/modules/webmidi/NavigatorWebMIDI.h
+++ b/Source/modules/webmidi/NavigatorWebMIDI.h
@@ -41,7 +41,7 @@ namespace blink {
class Navigator;
-class NavigatorWebMIDI FINAL : public NoBaseWillBeGarbageCollected<NavigatorWebMIDI>, public WillBeHeapSupplement<Navigator>, public DOMWindowProperty {
+class NavigatorWebMIDI final : public NoBaseWillBeGarbageCollected<NavigatorWebMIDI>, public WillBeHeapSupplement<Navigator>, public DOMWindowProperty {
WILL_BE_USING_GARBAGE_COLLECTED_MIXIN(NavigatorWebMIDI);
DECLARE_EMPTY_VIRTUAL_DESTRUCTOR_WILL_BE_REMOVED(NavigatorWebMIDI);
public:
@@ -50,7 +50,7 @@ public:
static ScriptPromise requestMIDIAccess(ScriptState*, Navigator&, const MIDIOptions&);
ScriptPromise requestMIDIAccess(ScriptState*, const MIDIOptions&);
- virtual void trace(Visitor*) OVERRIDE;
+ virtual void trace(Visitor*) override;
private:
NavigatorWebMIDI(LocalFrame*);
« no previous file with comments | « Source/modules/webmidi/MIDIPortMap.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698