Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(124)

Unified Diff: third_party/WebKit/Source/modules/presentation/PresentationConnection.h

Issue 2707243006: [SharedArrayBuffer] Prevent SharedArrayBuffer being used in Web APIs (Closed)
Patch Set: update comment, add TODO Created 3 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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();

Powered by Google App Engine
This is Rietveld 408576698