Index: third_party/WebKit/Source/modules/presentation/PresentationConnection.h |
diff --git a/third_party/WebKit/Source/modules/presentation/PresentationConnection.h b/third_party/WebKit/Source/modules/presentation/PresentationConnection.h |
index b4c178a7caca7332aa678240373de10c9c738f2b..7fd67a756b524ce3921aba0419d2952133aefe61 100644 |
--- a/third_party/WebKit/Source/modules/presentation/PresentationConnection.h |
+++ b/third_party/WebKit/Source/modules/presentation/PresentationConnection.h |
@@ -7,6 +7,7 @@ |
#include <memory> |
#include "core/dom/ContextLifecycleObserver.h" |
+#include "core/dom/NotShared.h" |
#include "core/events/EventTarget.h" |
#include "core/fileapi/Blob.h" |
#include "core/fileapi/FileError.h" |
@@ -60,7 +61,7 @@ class PresentationConnection final : public EventTargetWithInlineData, |
void send(const String& message, ExceptionState&); |
void send(DOMArrayBuffer*, ExceptionState&); |
- void send(DOMArrayBufferView*, ExceptionState&); |
+ void send(const NotShared<DOMArrayBufferView>&, ExceptionState&); |
void send(Blob*, ExceptionState&); |
void close(); |
void terminate(); |