Index: third_party/WebKit/Source/bindings/tests/results/core/V8TestDictionary.cpp |
diff --git a/third_party/WebKit/Source/bindings/tests/results/core/V8TestDictionary.cpp b/third_party/WebKit/Source/bindings/tests/results/core/V8TestDictionary.cpp |
index b1dda0b237a5836f5bf1ad68baff4601cccc679b..ee722c3130fabdc1926ed311b53401eaa5258584 100644 |
--- a/third_party/WebKit/Source/bindings/tests/results/core/V8TestDictionary.cpp |
+++ b/third_party/WebKit/Source/bindings/tests/results/core/V8TestDictionary.cpp |
@@ -26,6 +26,7 @@ |
#include "bindings/core/v8/V8TestObject.h" |
#include "bindings/core/v8/V8Uint8Array.h" |
#include "core/dom/FlexibleArrayBufferView.h" |
+#include "core/dom/MaybeShared.h" |
#include "core/frame/Deprecation.h" |
#include "platform/RuntimeEnabledFeatures.h" |
@@ -556,7 +557,7 @@ void V8TestDictionary::toImpl(v8::Isolate* isolate, v8::Local<v8::Value> v8Value |
if (uint8ArrayMemberValue.IsEmpty() || uint8ArrayMemberValue->IsUndefined()) { |
// Do nothing. |
} else { |
- DOMUint8Array* uint8ArrayMember = uint8ArrayMemberValue->IsUint8Array() ? V8Uint8Array::toImpl(v8::Local<v8::Uint8Array>::Cast(uint8ArrayMemberValue)) : 0; |
+ MaybeShared<DOMUint8Array> uint8ArrayMember = uint8ArrayMemberValue->IsUint8Array() ? V8Uint8Array::toImpl(v8::Local<v8::Uint8Array>::Cast(uint8ArrayMemberValue)) : 0; |
if (!uint8ArrayMember) { |
exceptionState.throwTypeError("member uint8ArrayMember is not of type Uint8Array."); |
return; |