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 b18e8c2c3c1ffa4188d15fe61cdc14fb238441cf..67efdf8e95c684494fa914230eb83e5f43dc7b6e 100644 |
--- a/third_party/WebKit/Source/modules/webmidi/MIDIInput.cpp |
+++ b/third_party/WebKit/Source/modules/webmidi/MIDIInput.cpp |
@@ -89,7 +89,7 @@ |
// unless the current process has an explicit permission to handle sysex message. |
if (data[0] == 0xf0 && !midiAccess()->sysexEnabled()) |
return; |
- DOMUint8Array* array = DOMUint8Array::create(data, length); |
+ RefPtr<DOMUint8Array> array = DOMUint8Array::create(data, length); |
dispatchEvent(MIDIMessageEvent::create(timeStamp, array)); |
} |