| 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 c50f5dd61c5eab554fbe27d05e3bd4a9822bf6fe..3cbb57ec63103f0cd5a4271f2643488e89a7bf58 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(NotShared<DOMArrayBufferView>, ExceptionState&);
|
| void send(Blob*, ExceptionState&);
|
| void close();
|
| void terminate();
|
|
|