blob: e234b03d5e5142d071743f27b024dc9b10634f29 [file] [log] [blame]
// Copyright 2014 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
// This file has been auto-generated from the Jinja2 template
// third_party/blink/renderer/bindings/templates/interface.cc.tmpl
// by the script code_generator_v8.py.
// DO NOT MODIFY!
// clang-format off
#include "third_party/blink/renderer/bindings/tests/results/core/v8_uint8_clamped_array.h"
#include <algorithm>
#include "base/memory/scoped_refptr.h"
#include "third_party/blink/renderer/bindings/core/v8/native_value_traits_impl.h"
#include "third_party/blink/renderer/bindings/core/v8/v8_array_buffer.h"
#include "third_party/blink/renderer/bindings/core/v8/v8_dom_configuration.h"
#include "third_party/blink/renderer/bindings/core/v8/v8_shared_array_buffer.h"
#include "third_party/blink/renderer/core/execution_context/execution_context.h"
#include "third_party/blink/renderer/platform/bindings/exception_messages.h"
#include "third_party/blink/renderer/platform/bindings/exception_state.h"
#include "third_party/blink/renderer/platform/bindings/v8_object_constructor.h"
#include "third_party/blink/renderer/platform/scheduler/public/cooperative_scheduling_manager.h"
#include "third_party/blink/renderer/platform/wtf/get_ptr.h"
namespace blink {
// Suppress warning: global constructors, because struct WrapperTypeInfo is trivial
// and does not depend on another global objects.
#if defined(COMPONENT_BUILD) && defined(WIN32) && defined(__clang__)
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Wglobal-constructors"
#endif
const WrapperTypeInfo v8_uint8_clamped_array_wrapper_type_info = {
gin::kEmbedderBlink,
nullptr,
nullptr,
"Uint8ClampedArray",
V8ArrayBufferView::GetWrapperTypeInfo(),
WrapperTypeInfo::kWrapperTypeObjectPrototype,
WrapperTypeInfo::kObjectClassId,
WrapperTypeInfo::kNotInheritFromActiveScriptWrappable,
};
#if defined(COMPONENT_BUILD) && defined(WIN32) && defined(__clang__)
#pragma clang diagnostic pop
#endif
// not [ActiveScriptWrappable]
static_assert(
!std::is_base_of<ActiveScriptWrappableBase, TestUint8ClampedArray>::value,
"TestUint8ClampedArray inherits from ActiveScriptWrappable<>, but is not specifying "
"[ActiveScriptWrappable] extended attribute in the IDL file. "
"Be consistent.");
static_assert(
std::is_same<decltype(&TestUint8ClampedArray::HasPendingActivity),
decltype(&ScriptWrappable::HasPendingActivity)>::value,
"TestUint8ClampedArray is overriding hasPendingActivity(), but is not specifying "
"[ActiveScriptWrappable] extended attribute in the IDL file. "
"Be consistent.");
TestUint8ClampedArray* V8Uint8ClampedArray::ToImpl(v8::Local<v8::Object> object) {
DCHECK(object->IsUint8ClampedArray());
ScriptWrappable* script_wrappable = ToScriptWrappable(object);
if (script_wrappable)
return script_wrappable->ToImpl<TestUint8ClampedArray>();
v8::Local<v8::Uint8ClampedArray> v8_view = object.As<v8::Uint8ClampedArray>();
v8::Local<v8::Object> array_buffer = v8_view->Buffer();
TestUint8ClampedArray* typed_array = nullptr;
if (array_buffer->IsArrayBuffer()) {
typed_array = TestUint8ClampedArray::Create(
V8ArrayBuffer::ToImpl(array_buffer),
v8_view->ByteOffset(),
v8_view->Length());
} else if (array_buffer->IsSharedArrayBuffer()) {
typed_array = TestUint8ClampedArray::Create(
V8SharedArrayBuffer::ToImpl(array_buffer),
v8_view->ByteOffset(),
v8_view->Length());
} else {
NOTREACHED();
}
v8::Local<v8::Object> associated_wrapper =
typed_array->AssociateWithWrapper(
v8::Isolate::GetCurrent(), typed_array->GetWrapperTypeInfo(), object);
DCHECK(associated_wrapper == object);
return typed_array->ToImpl<TestUint8ClampedArray>();
}
TestUint8ClampedArray* V8Uint8ClampedArray::ToImplWithTypeCheck(
v8::Isolate* isolate, v8::Local<v8::Value> value) {
return value->IsUint8ClampedArray() ? ToImpl(v8::Local<v8::Object>::Cast(value)) : nullptr;
}
} // namespace blink