Line data Source code
1 : /* THIS FILE IS AUTOGENERATED FROM SourceBuffer.webidl BY Codegen.py - DO NOT EDIT */
2 :
3 : #ifndef mozilla_dom_SourceBufferBinding_h
4 : #define mozilla_dom_SourceBufferBinding_h
5 :
6 : #include "js/RootingAPI.h"
7 : #include "jspubtd.h"
8 : #include "mozilla/ErrorResult.h"
9 : #include "mozilla/dom/BindingDeclarations.h"
10 : #include "mozilla/dom/Nullable.h"
11 :
12 : namespace mozilla {
13 : namespace dom {
14 :
15 : struct NativePropertyHooks;
16 : class ProtoAndIfaceCache;
17 : class SourceBuffer;
18 : struct SourceBufferAtoms;
19 :
20 : } // namespace dom
21 : } // namespace mozilla
22 :
23 : namespace mozilla {
24 : namespace dom {
25 :
26 : enum class SourceBufferAppendMode : uint8_t {
27 : Segments,
28 : Sequence,
29 : EndGuard_
30 : };
31 :
32 : namespace SourceBufferAppendModeValues {
33 : extern const EnumEntry strings[3];
34 : } // namespace SourceBufferAppendModeValues
35 :
36 : bool
37 : ToJSValue(JSContext* aCx, SourceBufferAppendMode aArgument, JS::MutableHandle<JS::Value> aValue);
38 :
39 :
40 : namespace SourceBufferBinding {
41 :
42 : typedef mozilla::dom::SourceBuffer NativeType;
43 :
44 : bool
45 : ConstructorEnabled(JSContext* aCx, JS::Handle<JSObject*> aObj);
46 :
47 : JSObject*
48 : DefineDOMInterface(JSContext* aCx, JS::Handle<JSObject*> aGlobal, JS::Handle<jsid> id, bool aDefineOnGlobal);
49 :
50 : const JSClass*
51 : GetJSClass();
52 :
53 : bool
54 : Wrap(JSContext* aCx, mozilla::dom::SourceBuffer* aObject, nsWrapperCache* aCache, JS::Handle<JSObject*> aGivenProto, JS::MutableHandle<JSObject*> aReflector);
55 :
56 : template <class T>
57 0 : inline JSObject* Wrap(JSContext* aCx, T* aObject, JS::Handle<JSObject*> aGivenProto)
58 : {
59 0 : JS::Rooted<JSObject*> reflector(aCx);
60 0 : return Wrap(aCx, aObject, aObject, aGivenProto, &reflector) ? reflector.get() : nullptr;
61 : }
62 :
63 : // We declare this as an array so that retrieving a pointer to this
64 : // binding's property hooks only requires compile/link-time resolvable
65 : // address arithmetic. Declaring it as a pointer instead would require
66 : // doing a run-time load to fetch a pointer to this binding's property
67 : // hooks. And then structures which embedded a pointer to this structure
68 : // would require a run-time load for proper initialization, which would
69 : // then induce static constructors. Lots of static constructors.
70 : extern const NativePropertyHooks sNativePropertyHooks[];
71 :
72 : void
73 : CreateInterfaceObjects(JSContext* aCx, JS::Handle<JSObject*> aGlobal, ProtoAndIfaceCache& aProtoAndIfaceCache, bool aDefineOnGlobal);
74 :
75 : JS::Handle<JSObject*>
76 : GetProtoObjectHandle(JSContext* aCx);
77 :
78 : JS::Handle<JSObject*>
79 : GetConstructorObjectHandle(JSContext* aCx, bool aDefineOnGlobal = true);
80 :
81 : JSObject*
82 : GetConstructorObject(JSContext* aCx);
83 :
84 : } // namespace SourceBufferBinding
85 :
86 :
87 :
88 : } // namespace dom
89 : } // namespace mozilla
90 :
91 : #endif // mozilla_dom_SourceBufferBinding_h
|