| Index: third_party/WebKit/Source/bindings/tests/results/core/V8Uint8ClampedArray.cpp
|
| diff --git a/third_party/WebKit/Source/bindings/tests/results/core/V8Uint8ClampedArray.cpp b/third_party/WebKit/Source/bindings/tests/results/core/V8Uint8ClampedArray.cpp
|
| index 0af285ce5aa10a48e09b6eb3dcb4c670bc3340d7..5a3427aa92373835723b1aa8f9558ca892e368c3 100644
|
| --- a/third_party/WebKit/Source/bindings/tests/results/core/V8Uint8ClampedArray.cpp
|
| +++ b/third_party/WebKit/Source/bindings/tests/results/core/V8Uint8ClampedArray.cpp
|
| @@ -23,7 +23,7 @@
|
| #pragma clang diagnostic push
|
| #pragma clang diagnostic ignored "-Wglobal-constructors"
|
| #endif
|
| -const WrapperTypeInfo V8Uint8ClampedArray::wrapperTypeInfo = { gin::kEmbedderBlink, 0, V8Uint8ClampedArray::refObject, V8Uint8ClampedArray::derefObject, V8Uint8ClampedArray::trace, 0, 0, V8Uint8ClampedArray::preparePrototypeAndInterfaceObject, V8Uint8ClampedArray::installConditionallyEnabledProperties, "Uint8ClampedArray", &V8ArrayBufferView::wrapperTypeInfo, WrapperTypeInfo::WrapperTypeObjectPrototype, WrapperTypeInfo::ObjectClassId, WrapperTypeInfo::NotInheritFromEventTarget, WrapperTypeInfo::Independent, WrapperTypeInfo::GarbageCollectedObject };
|
| +const WrapperTypeInfo V8Uint8ClampedArray::wrapperTypeInfo = { gin::kEmbedderBlink, 0, V8Uint8ClampedArray::refObject, V8Uint8ClampedArray::derefObject, V8Uint8ClampedArray::trace, 0, 0, V8Uint8ClampedArray::preparePrototypeAndInterfaceObject, V8Uint8ClampedArray::installConditionallyEnabledProperties, "Uint8ClampedArray", &V8ArrayBufferView::wrapperTypeInfo, WrapperTypeInfo::WrapperTypeObjectPrototype, WrapperTypeInfo::ObjectClassId, WrapperTypeInfo::NotInheritFromEventTarget, WrapperTypeInfo::Independent, WrapperTypeInfo::RefCountedObject };
|
| #if defined(COMPONENT_BUILD) && defined(WIN32) && COMPILER(CLANG)
|
| #pragma clang diagnostic pop
|
| #endif
|
| @@ -46,7 +46,7 @@
|
|
|
| v8::Local<v8::Uint8ClampedArray> v8View = object.As<v8::Uint8ClampedArray>();
|
| v8::Local<v8::Object> arrayBuffer = v8View->Buffer();
|
| - TestUint8ClampedArray* typedArray = nullptr;
|
| + RefPtr<TestUint8ClampedArray> typedArray;
|
| if (arrayBuffer->IsArrayBuffer()) {
|
| typedArray = TestUint8ClampedArray::create(V8ArrayBuffer::toImpl(arrayBuffer), v8View->ByteOffset(), v8View->Length());
|
| } else if (arrayBuffer->IsSharedArrayBuffer()) {
|
| @@ -67,10 +67,12 @@
|
|
|
| void V8Uint8ClampedArray::refObject(ScriptWrappable* scriptWrappable)
|
| {
|
| + scriptWrappable->toImpl<TestUint8ClampedArray>()->ref();
|
| }
|
|
|
| void V8Uint8ClampedArray::derefObject(ScriptWrappable* scriptWrappable)
|
| {
|
| + scriptWrappable->toImpl<TestUint8ClampedArray>()->deref();
|
| }
|
|
|
| } // namespace blink
|
|
|