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

Unified Diff: third_party/WebKit/Source/bindings/tests/results/core/TestDictionary.cpp

Issue 2707243006: [SharedArrayBuffer] Prevent SharedArrayBuffer being used in Web APIs (Closed)
Patch Set: remove unused checks 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.cpp
diff --git a/third_party/WebKit/Source/bindings/tests/results/core/TestDictionary.cpp b/third_party/WebKit/Source/bindings/tests/results/core/TestDictionary.cpp
index 6983701611739f2651094a51b2ba05b3526195cb..134fd8d8468fd385205153d1aade1a90dde5f703 100644
--- a/third_party/WebKit/Source/bindings/tests/results/core/TestDictionary.cpp
+++ b/third_party/WebKit/Source/bindings/tests/results/core/TestDictionary.cpp
@@ -389,10 +389,10 @@ void TestDictionary::setTestObjectSequenceMember(const HeapVector<Member<TestObj
bool TestDictionary::hasUint8ArrayMember() const {
return m_uint8ArrayMember;
}
-DOMUint8Array* TestDictionary::uint8ArrayMember() const {
+NotShared<DOMUint8Array> TestDictionary::uint8ArrayMember() const {
return m_uint8ArrayMember;
}
-void TestDictionary::setUint8ArrayMember(DOMUint8Array* value) {
+void TestDictionary::setUint8ArrayMember(NotShared<DOMUint8Array> value) {
m_uint8ArrayMember = value;
}
bool TestDictionary::hasUnionInRecordMember() const {

Powered by Google App Engine
This is Rietveld 408576698