| Index: third_party/WebKit/Source/modules/webmidi/MIDIOutput.h
|
| diff --git a/third_party/WebKit/Source/modules/webmidi/MIDIOutput.h b/third_party/WebKit/Source/modules/webmidi/MIDIOutput.h
|
| index 74d4fcabdc6e9876b7ecb1e90f43ffd9cf4dba2f..3bd59ed9833a9d6efccf24d03a5a10251f51e454 100644
|
| --- a/third_party/WebKit/Source/modules/webmidi/MIDIOutput.h
|
| +++ b/third_party/WebKit/Source/modules/webmidi/MIDIOutput.h
|
| @@ -32,7 +32,6 @@
|
| #define MIDIOutput_h
|
|
|
| #include "core/dom/DOMTypedArray.h"
|
| -#include "core/dom/NotShared.h"
|
| #include "modules/webmidi/MIDIPort.h"
|
|
|
| namespace blink {
|
| @@ -53,11 +52,11 @@
|
| midi::mojom::PortState);
|
| ~MIDIOutput() override;
|
|
|
| - void send(NotShared<DOMUint8Array>, double timestamp, ExceptionState&);
|
| + void send(DOMUint8Array*, double timestamp, ExceptionState&);
|
| void send(Vector<unsigned>, double timestamp, ExceptionState&);
|
|
|
| // send() without optional |timestamp|.
|
| - void send(NotShared<DOMUint8Array>, ExceptionState&);
|
| + void send(DOMUint8Array*, ExceptionState&);
|
| void send(Vector<unsigned>, ExceptionState&);
|
|
|
| DECLARE_VIRTUAL_TRACE();
|
|
|