| Index: Source/modules/webmidi/MIDIInput.cpp
|
| diff --git a/Source/modules/webmidi/MIDIInput.cpp b/Source/modules/webmidi/MIDIInput.cpp
|
| index 64310d042dbeb584a61bd99cf693f8f82d3c65a3..becbd1d8af4e2be142636135d57071456c182c73 100644
|
| --- a/Source/modules/webmidi/MIDIInput.cpp
|
| +++ b/Source/modules/webmidi/MIDIInput.cpp
|
| @@ -40,7 +40,7 @@ namespace blink {
|
| MIDIInput* MIDIInput::create(MIDIAccess* access, const String& id, const String& manufacturer, const String& name, const String& version)
|
| {
|
| ASSERT(access);
|
| - return adoptRefCountedGarbageCollectedWillBeNoop(new MIDIInput(access, id, manufacturer, name, version));
|
| + return new MIDIInput(access, id, manufacturer, name, version);
|
| }
|
|
|
| MIDIInput::MIDIInput(MIDIAccess* access, const String& id, const String& manufacturer, const String& name, const String& version)
|
|
|