| Index: third_party/WebKit/Source/modules/webmidi/MIDIInput.cpp
|
| diff --git a/third_party/WebKit/Source/modules/webmidi/MIDIInput.cpp b/third_party/WebKit/Source/modules/webmidi/MIDIInput.cpp
|
| index ba94909889ab25f7812fafad1fe28754c6a59f5d..46a080c5c137b9f3ecfe561109c20621745dea9f 100644
|
| --- a/third_party/WebKit/Source/modules/webmidi/MIDIInput.cpp
|
| +++ b/third_party/WebKit/Source/modules/webmidi/MIDIInput.cpp
|
| @@ -45,10 +45,7 @@ MIDIInput* MIDIInput::create(MIDIAccess* access,
|
| const String& version,
|
| PortState state) {
|
| DCHECK(access);
|
| - MIDIInput* input =
|
| - new MIDIInput(access, id, manufacturer, name, version, state);
|
| - input->suspendIfNeeded();
|
| - return input;
|
| + return new MIDIInput(access, id, manufacturer, name, version, state);
|
| }
|
|
|
| MIDIInput::MIDIInput(MIDIAccess* access,
|
|
|