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

Unified Diff: third_party/WebKit/Source/bindings/tests/results/core/TestDictionary.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/TestDictionary.h
diff --git a/third_party/WebKit/Source/bindings/tests/results/core/TestDictionary.h b/third_party/WebKit/Source/bindings/tests/results/core/TestDictionary.h
index 0c37adb096d4ad7470aec16a228a435c95c554d8..951f536437dd1bd338f237d946d486d3509ed61d 100644
--- a/third_party/WebKit/Source/bindings/tests/results/core/TestDictionary.h
+++ b/third_party/WebKit/Source/bindings/tests/results/core/TestDictionary.h
@@ -22,6 +22,7 @@
#include "bindings/tests/idls/core/TestInterface2.h"
#include "core/CoreExport.h"
#include "core/dom/DOMTypedArray.h"
+#include "core/dom/NotShared.h"
#include "core/testing/InternalDictionary.h"
#include "platform/heap/Handle.h"
#include "platform/wtf/Vector.h"
@@ -186,8 +187,8 @@ class CORE_EXPORT TestDictionary : public IDLDictionaryBase {
void setTestObjectSequenceMember(const HeapVector<Member<TestObject>>&);
bool hasUint8ArrayMember() const;
- DOMUint8Array* uint8ArrayMember() const;
- void setUint8ArrayMember(DOMUint8Array*);
+ NotShared<DOMUint8Array> uint8ArrayMember() const;
+ void setUint8ArrayMember(NotShared<DOMUint8Array>);
bool hasUnionInRecordMember() const;
const HeapVector<std::pair<String, LongOrBoolean>>& unionInRecordMember() const;

Powered by Google App Engine
This is Rietveld 408576698