| Index: third_party/WebKit/Source/modules/webmidi/MIDIMessageEventInit.idl
|
| diff --git a/third_party/WebKit/Source/modules/webmidi/MIDIMessageEventInit.idl b/third_party/WebKit/Source/modules/webmidi/MIDIMessageEventInit.idl
|
| index 4c9e046af180f007f955918b84867ad961cc7dc3..0115f67083ab3dd5d9230050545a0ef6d427aed7 100644
|
| --- a/third_party/WebKit/Source/modules/webmidi/MIDIMessageEventInit.idl
|
| +++ b/third_party/WebKit/Source/modules/webmidi/MIDIMessageEventInit.idl
|
| @@ -6,5 +6,8 @@
|
|
|
| dictionary MIDIMessageEventInit : EventInit {
|
| double receivedTime;
|
| - Uint8Array data;
|
| + // TODO(foolip): |data| should be required and not nullable.
|
| + // https://crbug.com/647693
|
| + // https://github.com/WebAudio/web-midi-api/issues/168
|
| + Uint8Array? data;
|
| };
|
|
|