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 const nsLiteralCString Values[2];
};
} // 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 const nsLiteralCString Values[2];
};
} // 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 const nsLiteralCString Values[3];
};
} // 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, bool aDefineOnGlobal);
inline JS::Handle<JSObject*> GetProtoObjectHandle(JSContext* aCx)
{
/* Get the interface prototype object for this class. This will create the
object as needed. */
return GetPerInterfaceObjectHandle(aCx, prototypes::id::MIDIPort,
&CreateInterfaceObjects,
/* aDefineOnGlobal = */ true);
}
JSObject*
GetProtoObject(JSContext* aCx);
inline JS::Handle<JSObject*> GetConstructorObjectHandle(JSContext* aCx, bool aDefineOnGlobal = true)
{
/* Get the interface object for this class. This will create the object as
needed. */
return GetPerInterfaceObjectHandle(aCx, constructors::id::MIDIPort,
&CreateInterfaceObjects,
aDefineOnGlobal);
}
JSObject*
GetConstructorObject(JSContext* aCx);
} // 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(mozilla::ArrayLength(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(mozilla::ArrayLength(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(mozilla::ArrayLength(dom::binding_detail::EnumStrings<dom::MIDIPortConnectionState>::Values) - 1 == UnderlyingValue(value),
"Mismatch between enum strings and enum count");
};
} // namespace mozilla
#endif // DOM_MIDIPORTBINDING_H_