Copy as Markdown
Other Tools
/* THIS FILE IS AUTOGENERATED FROM MIDIPort.webidl BY Codegen.py - DO NOT EDIT */
#ifndef DOM_MIDIPORTBINDING_H_
#define DOM_MIDIPORTBINDING_H_
#include "js/CallAndConstruct.h"
#include "js/RootingAPI.h"
#include "js/TypeDecls.h"
#include "mozilla/ArrayUtils.h"
#include "mozilla/EnumTypeTraits.h"
#include "mozilla/Span.h"
#include "mozilla/dom/BindingDeclarations.h"
#include "mozilla/dom/Nullable.h"
#include "mozilla/dom/PrototypeList.h"
namespace mozilla {
namespace dom {
class MIDIPort;
struct NativePropertyHooks;
class ProtoAndIfaceCache;
} // namespace dom
} // namespace mozilla
namespace mozilla {
namespace dom {
enum class MIDIPortType : uint8_t {
Input,
Output,
};
namespace binding_detail {
template <> struct EnumStrings<MIDIPortType> {
static constexpr nsLiteralCString Values[2] {
"input"_ns,
"output"_ns,
};
};
} // namespace binding_detail
bool
ToJSValue(JSContext* aCx, MIDIPortType aArgument, JS::MutableHandle<JS::Value> aValue);
enum class MIDIPortDeviceState : uint8_t {
Disconnected,
Connected,
};
namespace binding_detail {
template <> struct EnumStrings<MIDIPortDeviceState> {
static constexpr nsLiteralCString Values[2] {
"disconnected"_ns,
"connected"_ns,
};
};
} // namespace binding_detail
bool
ToJSValue(JSContext* aCx, MIDIPortDeviceState aArgument, JS::MutableHandle<JS::Value> aValue);
enum class MIDIPortConnectionState : uint8_t {
Open,
Closed,
Pending,
};
namespace binding_detail {
template <> struct EnumStrings<MIDIPortConnectionState> {
static constexpr nsLiteralCString Values[3] {
"open"_ns,
"closed"_ns,
"pending"_ns,
};
};
} // namespace binding_detail
bool
ToJSValue(JSContext* aCx, MIDIPortConnectionState aArgument, JS::MutableHandle<JS::Value> aValue);
namespace MIDIPort_Binding {
typedef mozilla::dom::MIDIPort NativeType;
bool
ConstructorEnabled(JSContext* aCx, JS::Handle<JSObject*> aObj);
void
CreateInterfaceObjects(JSContext* aCx, JS::Handle<JSObject*> aGlobal, ProtoAndIfaceCache& aProtoAndIfaceCache, DefineInterfaceProperty aDefineOnGlobal);
JS::Handle<JSObject*>
GetProtoObjectHandle(JSContext* aCx);
JSObject*
GetProtoObject(JSContext* aCx);
JS::Handle<JSObject*>
GetConstructorObjectHandle(JSContext* aCx);
inline bool CreateAndDefineOnGlobal(JSContext* aCx)
{
// Get the interface or namespace object for this class. This will
// create the object as needed and always define the properties for
// it on the global. The caller should make sure the interface or
// namespace is exposed on the global before calling this.
return GetPerInterfaceObjectHandle(aCx, constructors::id::MIDIPort,
&CreateInterfaceObjects,
DefineInterfaceProperty::Always);
}
} // namespace MIDIPort_Binding
} // namespace dom
template <>
struct MaxContiguousEnumValue<dom::MIDIPortType>
{
static constexpr dom::MIDIPortType value = dom::MIDIPortType::Output;
static_assert(static_cast<uint8_t>(dom::MIDIPortType::Input) == 0,
"We rely on this in ContiguousEnumValues");
static_assert(std::size(dom::binding_detail::EnumStrings<dom::MIDIPortType>::Values) - 1 == UnderlyingValue(value),
"Mismatch between enum strings and enum count");
};
template <>
struct MaxContiguousEnumValue<dom::MIDIPortDeviceState>
{
static constexpr dom::MIDIPortDeviceState value = dom::MIDIPortDeviceState::Connected;
static_assert(static_cast<uint8_t>(dom::MIDIPortDeviceState::Disconnected) == 0,
"We rely on this in ContiguousEnumValues");
static_assert(std::size(dom::binding_detail::EnumStrings<dom::MIDIPortDeviceState>::Values) - 1 == UnderlyingValue(value),
"Mismatch between enum strings and enum count");
};
template <>
struct MaxContiguousEnumValue<dom::MIDIPortConnectionState>
{
static constexpr dom::MIDIPortConnectionState value = dom::MIDIPortConnectionState::Pending;
static_assert(static_cast<uint8_t>(dom::MIDIPortConnectionState::Open) == 0,
"We rely on this in ContiguousEnumValues");
static_assert(std::size(dom::binding_detail::EnumStrings<dom::MIDIPortConnectionState>::Values) - 1 == UnderlyingValue(value),
"Mismatch between enum strings and enum count");
};
} // namespace mozilla
#endif // DOM_MIDIPORTBINDING_H_