// Copyright 2021 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef THIRD_PARTY_BLINK_RENDERER_BINDINGS_CORE_V8_V8_CTYPE_TRAITS_H_ #define THIRD_PARTY_BLINK_RENDERER_BINDINGS_CORE_V8_V8_CTYPE_TRAITS_H_ #include <type_traits> #include "third_party/blink/renderer/bindings/core/v8/idl_types_base.h" #include "v8/include/v8-fast-api-calls.h" namespace blink { template <typename T> class V8CTypeTraits; template <> class V8CTypeTraits<IDLBoolean> { … }; V8CTypeTraits<IDLFloatingPointNumberTypeBase<T, mode>>; V8CTypeTraits<IDLIntegerTypeBase<T, mode>>; } // namespace blink #endif // THIRD_PARTY_BLINK_RENDERER_BINDINGS_CORE_V8_V8_CTYPE_TRAITS_H_