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 69af3f6415df35514c3c96959da2c12dd52b2d53..6d96d38bc32a48f07fa2b048687c2ead3ecc01c8 100644 |
--- a/third_party/WebKit/Source/bindings/tests/results/core/TestDictionary.cpp |
+++ b/third_party/WebKit/Source/bindings/tests/results/core/TestDictionary.cpp |
@@ -400,11 +400,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; |