Copy as Markdown

Other Tools

/* THIS FILE IS AUTOGENERATED FROM TextEncoder.webidl BY Codegen.py - DO NOT EDIT */
#ifndef DOM_TEXTENCODERBINDING_H_
#define DOM_TEXTENCODERBINDING_H_
#include "js/CallAndConstruct.h"
#include "js/RootingAPI.h"
#include "js/TypeDecls.h"
#include "mozilla/dom/BindingDeclarations.h"
#include "mozilla/dom/Nullable.h"
#include "mozilla/dom/PrototypeList.h"
namespace mozilla {
namespace dom {
struct NativePropertyHooks;
class ProtoAndIfaceCache;
class TextEncoder;
struct TextEncoderEncodeIntoResultAtoms;
} // namespace dom
} // namespace mozilla
namespace mozilla::dom {
struct TextEncoderEncodeIntoResult : public DictionaryBase
{
MOZ_INIT_OUTSIDE_CTOR Optional<uint64_t> mRead;
MOZ_INIT_OUTSIDE_CTOR Optional<uint64_t> mWritten;
TextEncoderEncodeIntoResult();
explicit inline TextEncoderEncodeIntoResult(const FastDictionaryInitializer& )
{
// Do nothing here; this is used by our "Fast" subclass
}
TextEncoderEncodeIntoResult(TextEncoderEncodeIntoResult&& aOther) = default;
explicit inline TextEncoderEncodeIntoResult(const TextEncoderEncodeIntoResult& 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);
TextEncoderEncodeIntoResult&
operator=(const TextEncoderEncodeIntoResult& aOther);
bool
operator==(const TextEncoderEncodeIntoResult& aOther) const;
private:
static bool
InitIds(JSContext* cx, TextEncoderEncodeIntoResultAtoms* atomsCache);
};
namespace binding_detail {
struct FastTextEncoderEncodeIntoResult : public TextEncoderEncodeIntoResult
{
inline FastTextEncoderEncodeIntoResult()
: TextEncoderEncodeIntoResult(FastDictionaryInitializer())
{
// Doesn't matter what int we pass to the parent constructor
}
};
} // namespace binding_detail
namespace TextEncoder_Binding {
typedef mozilla::dom::TextEncoder NativeType;
bool
Wrap(JSContext* aCx, mozilla::dom::TextEncoder* aObject, JS::Handle<JSObject*> aGivenProto, JS::MutableHandle<JSObject*> aReflector);
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::TextEncoder,
&CreateInterfaceObjects,
/* aDefineOnGlobal = */ true);
}
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::TextEncoder,
&CreateInterfaceObjects,
aDefineOnGlobal);
}
JSObject*
GetConstructorObject(JSContext* aCx);
} // namespace TextEncoder_Binding
} // namespace mozilla::dom
#endif // DOM_TEXTENCODERBINDING_H_