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

Unified Diff: third_party/WebKit/Source/bindings/tests/results/core/TestInterface2OrUint8Array.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/bindings/tests/results/core/TestInterface2OrUint8Array.h
diff --git a/third_party/WebKit/Source/bindings/tests/results/core/TestInterface2OrUint8Array.h b/third_party/WebKit/Source/bindings/tests/results/core/TestInterface2OrUint8Array.h
index 41922494b24ac6222fae60ed4fa0a281b9fff79b..ae0f637fdda5c973a7aba2a0d8f56d09abb2ace7 100644
--- a/third_party/WebKit/Source/bindings/tests/results/core/TestInterface2OrUint8Array.h
+++ b/third_party/WebKit/Source/bindings/tests/results/core/TestInterface2OrUint8Array.h
@@ -20,6 +20,7 @@
#include "bindings/core/v8/V8Uint8Array.h"
#include "core/CoreExport.h"
#include "core/dom/FlexibleArrayBufferView.h"
+#include "core/dom/NotShared.h"
#include "platform/heap/Handle.h"
namespace blink {
@@ -38,9 +39,9 @@ class CORE_EXPORT TestInterface2OrUint8Array final {
static TestInterface2OrUint8Array fromTestInterface2(TestInterface2*);
bool isUint8Array() const { return m_type == SpecificTypeUint8Array; }
- DOMUint8Array* getAsUint8Array() const;
- void setUint8Array(DOMUint8Array*);
- static TestInterface2OrUint8Array fromUint8Array(DOMUint8Array*);
+ NotShared<DOMUint8Array> getAsUint8Array() const;
+ void setUint8Array(NotShared<DOMUint8Array>);
+ static TestInterface2OrUint8Array fromUint8Array(NotShared<DOMUint8Array>);
TestInterface2OrUint8Array(const TestInterface2OrUint8Array&);
~TestInterface2OrUint8Array();

Powered by Google App Engine
This is Rietveld 408576698