Copy as Markdown
Other Tools
/* THIS FILE IS AUTOGENERATED FROM MediaRecorder.webidl BY Codegen.py - DO NOT EDIT */
#ifndef DOM_MEDIARECORDERBINDING_H_
#define DOM_MEDIARECORDERBINDING_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 MediaRecorder;
struct MediaRecorderOptionsAtoms;
struct NativePropertyHooks;
class ProtoAndIfaceCache;
} // namespace dom
} // namespace mozilla
namespace mozilla {
namespace dom {
enum class BitrateMode : uint8_t {
Constant,
Variable,
};
namespace binding_detail {
template <> struct EnumStrings<BitrateMode> {
static constexpr nsLiteralCString Values[2] {
"constant"_ns,
"variable"_ns,
};
};
} // namespace binding_detail
bool
ToJSValue(JSContext* aCx, BitrateMode aArgument, JS::MutableHandle<JS::Value> aValue);
enum class RecordingState : uint8_t {
Inactive,
Recording,
Paused,
};
namespace binding_detail {
template <> struct EnumStrings<RecordingState> {
static constexpr nsLiteralCString Values[3] {
"inactive"_ns,
"recording"_ns,
"paused"_ns,
};
};
} // namespace binding_detail
bool
ToJSValue(JSContext* aCx, RecordingState aArgument, JS::MutableHandle<JS::Value> aValue);
struct MediaRecorderOptions : public DictionaryBase
{
MOZ_INIT_OUTSIDE_CTOR Optional<uint32_t> mAudioBitsPerSecond;
MOZ_INIT_OUTSIDE_CTOR Optional<uint32_t> mBitsPerSecond;
MOZ_INIT_OUTSIDE_CTOR nsString mMimeType;
MOZ_INIT_OUTSIDE_CTOR Optional<uint32_t> mVideoBitsPerSecond;
MediaRecorderOptions();
explicit inline MediaRecorderOptions(const FastDictionaryInitializer& )
{
// Do nothing here; this is used by our "Fast" subclass
}
MediaRecorderOptions(MediaRecorderOptions&& aOther) = default;
explicit inline MediaRecorderOptions(const MediaRecorderOptions& aOther)
{
*this = aOther;
}
bool
Init(BindingCallContext& cx, JS::Handle<JS::Value> val, const char* sourceDescription = "Value", bool passedToJSImpl = false);
bool
Init(JSContext* cx_, JS::Handle<JS::Value> val, const char* sourceDescription = "Value", bool passedToJSImpl = false);
void
TraceDictionary(JSTracer* trc);
MediaRecorderOptions&
operator=(const MediaRecorderOptions& aOther);
private:
static bool
InitIds(JSContext* cx, MediaRecorderOptionsAtoms* atomsCache);
};
namespace binding_detail {
struct FastMediaRecorderOptions : public MediaRecorderOptions
{
inline FastMediaRecorderOptions()
: MediaRecorderOptions(FastDictionaryInitializer())
{
// Doesn't matter what int we pass to the parent constructor
}
};
} // namespace binding_detail
namespace MediaRecorder_Binding {
typedef mozilla::dom::MediaRecorder NativeType;
bool
Wrap(JSContext* aCx, mozilla::dom::MediaRecorder* aObject, nsWrapperCache* aCache, JS::Handle<JSObject*> aGivenProto, JS::MutableHandle<JSObject*> aReflector);
template <class T>
inline JSObject* Wrap(JSContext* aCx, T* aObject, JS::Handle<JSObject*> aGivenProto)
{
JS::Rooted<JSObject*> reflector(aCx);
return Wrap(aCx, aObject, aObject, aGivenProto, &reflector) ? reflector.get() : nullptr;
}
void
CreateInterfaceObjects(JSContext* aCx, JS::Handle<JSObject*> aGlobal, ProtoAndIfaceCache& aProtoAndIfaceCache, DefineInterfaceProperty aDefineOnGlobal);
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::MediaRecorder,
&CreateInterfaceObjects,
DefineInterfaceProperty::Always);
}
} // namespace MediaRecorder_Binding
} // namespace dom
template <>
struct MaxContiguousEnumValue<dom::BitrateMode>
{
static constexpr dom::BitrateMode value = dom::BitrateMode::Variable;
static_assert(static_cast<uint8_t>(dom::BitrateMode::Constant) == 0,
"We rely on this in ContiguousEnumValues");
static_assert(std::size(dom::binding_detail::EnumStrings<dom::BitrateMode>::Values) - 1 == UnderlyingValue(value),
"Mismatch between enum strings and enum count");
};
template <>
struct MaxContiguousEnumValue<dom::RecordingState>
{
static constexpr dom::RecordingState value = dom::RecordingState::Paused;
static_assert(static_cast<uint8_t>(dom::RecordingState::Inactive) == 0,
"We rely on this in ContiguousEnumValues");
static_assert(std::size(dom::binding_detail::EnumStrings<dom::RecordingState>::Values) - 1 == UnderlyingValue(value),
"Mismatch between enum strings and enum count");
};
} // namespace mozilla
#endif // DOM_MEDIARECORDERBINDING_H_