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

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

Issue 18778002: Inherit EventTarget interface instead of duplicating its code (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 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
Index: Source/modules/webmidi/MIDIAccess.h
diff --git a/Source/modules/webmidi/MIDIAccess.h b/Source/modules/webmidi/MIDIAccess.h
index 595afceabf03f5a2aa90ec187998a4bdfa0e3877..3b40bde723f83fc88e283fc8bca2e1dc8eb0e077 100644
--- a/Source/modules/webmidi/MIDIAccess.h
+++ b/Source/modules/webmidi/MIDIAccess.h
@@ -47,7 +47,7 @@ namespace WebCore {
class ScriptExecutionContext;
class MIDIAccessPromise;
-class MIDIAccess : public RefCounted<MIDIAccess>, public ScriptWrappable, public ActiveDOMObject, public EventTarget, public MIDIAccessorClient {
+class MIDIAccess : public EventTarget, public RefCounted<MIDIAccess>, public ScriptWrappable, public ActiveDOMObject, public MIDIAccessorClient {
public:
virtual ~MIDIAccess();
static PassRefPtr<MIDIAccess> create(ScriptExecutionContext*, MIDIAccessPromise*);

Powered by Google App Engine
This is Rietveld 408576698