| Index: third_party/WebKit/Source/modules/webmidi/MIDIOutput.cpp
|
| diff --git a/third_party/WebKit/Source/modules/webmidi/MIDIOutput.cpp b/third_party/WebKit/Source/modules/webmidi/MIDIOutput.cpp
|
| index 21402a9ef0be6f5660b3e3f6512a7f034e5f9110..576b0adc19411c9eca911e46b2ddb62fa9a50a3c 100644
|
| --- a/third_party/WebKit/Source/modules/webmidi/MIDIOutput.cpp
|
| +++ b/third_party/WebKit/Source/modules/webmidi/MIDIOutput.cpp
|
| @@ -205,10 +205,8 @@ MIDIOutput* MIDIOutput::create(MIDIAccess* access,
|
| const String& version,
|
| PortState state) {
|
| DCHECK(access);
|
| - MIDIOutput* output =
|
| - new MIDIOutput(access, portIndex, id, manufacturer, name, version, state);
|
| - output->suspendIfNeeded();
|
| - return output;
|
| + return new MIDIOutput(access, portIndex, id, manufacturer, name, version,
|
| + state);
|
| }
|
|
|
| MIDIOutput::MIDIOutput(MIDIAccess* access,
|
|
|