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 f537954a53700c7e8927d5b0af0f238b6bd7cc1d..414574907f732e9cfa0b4984b4d2ba8abdedb878 100644 |
--- a/third_party/WebKit/Source/bindings/tests/results/core/TestDictionary.cpp |
+++ b/third_party/WebKit/Source/bindings/tests/results/core/TestDictionary.cpp |
@@ -389,11 +389,11 @@ 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) { |
- m_uint8ArrayMember = value; |
+void TestDictionary::setUint8ArrayMember(NotShared<DOMUint8Array> value) { |
+ m_uint8ArrayMember = value.view(); |
} |
bool TestDictionary::hasUnionInRecordMember() const { |
return m_hasUnionInRecordMember; |