Index: Source/modules/webmidi/MIDIConnectionEvent.cpp |
diff --git a/Source/modules/webmidi/MIDIConnectionEvent.cpp b/Source/modules/webmidi/MIDIConnectionEvent.cpp |
index 2d20d6e48b7e5415d1df7d2f2953dac7f438a0ee..2603120c33c65fbd4eea5378827427ce35a05fd3 100644 |
--- a/Source/modules/webmidi/MIDIConnectionEvent.cpp |
+++ b/Source/modules/webmidi/MIDIConnectionEvent.cpp |
@@ -34,16 +34,6 @@ |
namespace blink { |
-MIDIConnectionEvent::MIDIConnectionEvent() |
-{ |
-} |
- |
-MIDIConnectionEvent::MIDIConnectionEvent(const AtomicString& type, MIDIPort* port) |
- : Event(type, false, false) |
- , m_port(port) |
-{ |
-} |
- |
MIDIConnectionEvent::MIDIConnectionEvent(const AtomicString& type, const MIDIConnectionEventInit& initializer) |
: Event(type, initializer) |
, m_port(nullptr) |
@@ -52,21 +42,6 @@ MIDIConnectionEvent::MIDIConnectionEvent(const AtomicString& type, const MIDICon |
m_port = initializer.port(); |
} |
-PassRefPtrWillBeRawPtr<MIDIConnectionEvent> MIDIConnectionEvent::create() |
-{ |
- return adoptRefWillBeNoop(new MIDIConnectionEvent()); |
-} |
- |
-PassRefPtrWillBeRawPtr<MIDIConnectionEvent> MIDIConnectionEvent::create(const AtomicString& type, MIDIPort* port) |
-{ |
- return adoptRefWillBeNoop(new MIDIConnectionEvent(type, port)); |
-} |
- |
-PassRefPtrWillBeRawPtr<MIDIConnectionEvent> MIDIConnectionEvent::create(const AtomicString& type, const MIDIConnectionEventInit& initializer) |
-{ |
- return adoptRefWillBeNoop(new MIDIConnectionEvent(type, initializer)); |
-} |
- |
DEFINE_TRACE(MIDIConnectionEvent) |
{ |
visitor->trace(m_port); |