| 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 f841653f4a42bbe1df5c7ae2fc559e471ae53486..d41d7e2cd333ef8af73c135b32581dc102eafc37 100644
|
| --- a/third_party/WebKit/Source/bindings/tests/results/core/V8TestDictionary.cpp
|
| +++ b/third_party/WebKit/Source/bindings/tests/results/core/V8TestDictionary.cpp
|
| @@ -26,7 +26,6 @@
|
| #include "bindings/core/v8/V8TestObject.h"
|
| #include "bindings/core/v8/V8Uint8Array.h"
|
| #include "core/dom/FlexibleArrayBufferView.h"
|
| -#include "core/dom/NotShared.h"
|
| #include "core/frame/Deprecation.h"
|
| #include "platform/RuntimeEnabledFeatures.h"
|
|
|
| @@ -644,9 +643,7 @@
|
| if (uint8ArrayMemberValue.IsEmpty() || uint8ArrayMemberValue->IsUndefined()) {
|
| // Do nothing.
|
| } else {
|
| - NotShared<DOMUint8Array> uint8ArrayMember = ToNotShared<NotShared<DOMUint8Array>>(isolate, uint8ArrayMemberValue, exceptionState);
|
| - if (exceptionState.HadException())
|
| - return;
|
| + 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;
|
|
|