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