Copy as Markdown

Other Tools

/* THIS FILE IS AUTOGENERATED FROM MediaTrackSupportedConstraints.webidl BY Codegen.py - DO NOT EDIT */
#ifndef DOM_MEDIATRACKSUPPORTEDCONSTRAINTSBINDING_H_
#define DOM_MEDIATRACKSUPPORTEDCONSTRAINTSBINDING_H_
#include "js/CallAndConstruct.h"
#include "js/RootingAPI.h"
#include "js/TypeDecls.h"
#include "mozilla/dom/BindingDeclarations.h"
#include "mozilla/dom/Nullable.h"
namespace mozilla {
namespace dom {
struct MediaTrackSupportedConstraintsAtoms;
struct NativePropertyHooks;
class ProtoAndIfaceCache;
} // namespace dom
} // namespace mozilla
namespace mozilla::dom {
struct MediaTrackSupportedConstraints : public DictionaryBase
{
MOZ_INIT_OUTSIDE_CTOR Optional<bool> mAspectRatio;
MOZ_INIT_OUTSIDE_CTOR bool mAutoGainControl;
MOZ_INIT_OUTSIDE_CTOR bool mBrowserWindow;
MOZ_INIT_OUTSIDE_CTOR bool mChannelCount;
MOZ_INIT_OUTSIDE_CTOR bool mDeviceId;
MOZ_INIT_OUTSIDE_CTOR bool mEchoCancellation;
MOZ_INIT_OUTSIDE_CTOR bool mFacingMode;
MOZ_INIT_OUTSIDE_CTOR bool mFrameRate;
MOZ_INIT_OUTSIDE_CTOR bool mGroupId;
MOZ_INIT_OUTSIDE_CTOR bool mHeight;
MOZ_INIT_OUTSIDE_CTOR Optional<bool> mLatency;
MOZ_INIT_OUTSIDE_CTOR bool mMediaSource;
MOZ_INIT_OUTSIDE_CTOR bool mNoiseSuppression;
MOZ_INIT_OUTSIDE_CTOR Optional<bool> mSampleRate;
MOZ_INIT_OUTSIDE_CTOR Optional<bool> mSampleSize;
MOZ_INIT_OUTSIDE_CTOR bool mScrollWithPage;
MOZ_INIT_OUTSIDE_CTOR bool mViewportHeight;
MOZ_INIT_OUTSIDE_CTOR bool mViewportOffsetX;
MOZ_INIT_OUTSIDE_CTOR bool mViewportOffsetY;
MOZ_INIT_OUTSIDE_CTOR bool mViewportWidth;
MOZ_INIT_OUTSIDE_CTOR Optional<bool> mVolume;
MOZ_INIT_OUTSIDE_CTOR bool mWidth;
MediaTrackSupportedConstraints();
explicit inline MediaTrackSupportedConstraints(const FastDictionaryInitializer& )
{
// Do nothing here; this is used by our "Fast" subclass
}
MediaTrackSupportedConstraints(MediaTrackSupportedConstraints&& aOther) = default;
explicit inline MediaTrackSupportedConstraints(const MediaTrackSupportedConstraints& aOther)
{
*this = aOther;
}
bool
Init(const char* sourceDescription = "Value", bool passedToJSImpl = false);
bool
ToObjectInternal(JSContext* cx, JS::MutableHandle<JS::Value> rval) const;
void
TraceDictionary(JSTracer* trc);
MediaTrackSupportedConstraints&
operator=(const MediaTrackSupportedConstraints& aOther);
bool
operator==(const MediaTrackSupportedConstraints& aOther) const;
private:
static bool
InitIds(JSContext* cx, MediaTrackSupportedConstraintsAtoms* atomsCache);
};
namespace binding_detail {
struct FastMediaTrackSupportedConstraints : public MediaTrackSupportedConstraints
{
inline FastMediaTrackSupportedConstraints()
: MediaTrackSupportedConstraints(FastDictionaryInitializer())
{
// Doesn't matter what int we pass to the parent constructor
}
};
} // namespace binding_detail
} // namespace mozilla::dom
#endif // DOM_MEDIATRACKSUPPORTEDCONSTRAINTSBINDING_H_