1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
/* THIS FILE IS AUTOGENERATED - DO NOT EDIT */

#![allow(non_camel_case_types,non_upper_case_globals,unused_imports,unused_variables,unused_assignments,unused_mut,clippy::approx_constant,clippy::let_unit_value,clippy::needless_return,clippy::too_many_arguments,clippy::unnecessary_cast,clippy::upper_case_acronyms)]

use crate::dom::bindings::import::base::*;

#[repr(usize)]
#[derive(Copy, Clone, Debug, JSTraceable, MallocSizeOf, PartialEq)]
pub enum RTCSdpType {
    Offer,
    Pranswer,
    Answer,
    Rollback
}
pub mod RTCSdpTypeValues {
    use crate::dom::bindings::conversions::ConversionResult;
    use crate::dom::bindings::conversions::FromJSValConvertible;
    use crate::dom::bindings::conversions::ToJSValConvertible;
    use crate::dom::bindings::utils::find_enum_value;
    use js::jsapi::JSContext;
    use js::rust::HandleValue;
    use js::rust::MutableHandleValue;
    use js::jsval::JSVal;

    pub const pairs: &[(&str, super::RTCSdpType)] = &[
        ("offer", super::RTCSdpType::Offer),
        ("pranswer", super::RTCSdpType::Pranswer),
        ("answer", super::RTCSdpType::Answer),
        ("rollback", super::RTCSdpType::Rollback),
    ];

    impl super::RTCSdpType {
        pub fn as_str(&self) -> &'static str {
            pairs[*self as usize].0
        }
    }

    impl Default for super::RTCSdpType {
        fn default() -> super::RTCSdpType {
            pairs[0].1
        }
    }

    impl ToJSValConvertible for super::RTCSdpType {
        unsafe fn to_jsval(&self, cx: *mut JSContext, rval: MutableHandleValue) {
            pairs[*self as usize].0.to_jsval(cx, rval);
        }
    }

    impl FromJSValConvertible for super::RTCSdpType {
        type Config = ();
        unsafe fn from_jsval(cx: *mut JSContext, value: HandleValue, _option: ())
                             -> Result<ConversionResult<super::RTCSdpType>, ()> {
            match find_enum_value(cx, value, pairs) {
                Err(_) => Err(()),
                Ok((None, search)) => {
                    Ok(ConversionResult::Failure(
                        format!("'{}' is not a valid enum value for enumeration 'RTCSdpType'.", search).into()
                    ))
                }
                Ok((Some(&value), _)) => Ok(ConversionResult::Success(value)),
            }
        }
    }
        } // mod RTCSdpTypeValues

#[derive(JSTraceable)]
pub struct RTCSessionDescriptionInit {
    pub sdp: DOMString,
    pub type_: RTCSdpType,
}
impl RTCSessionDescriptionInit {

    pub fn new(cx: SafeJSContext, val: HandleValue)
                      -> Result<ConversionResult<RTCSessionDescriptionInit>, ()> {
        unsafe {
            let object = if val.get().is_null_or_undefined() {
                ptr::null_mut()
            } else if val.get().is_object() {
                val.get().to_object()
            } else {
                return Ok(ConversionResult::Failure("Value is not an object.".into()));
            };
            rooted!(in(*cx) let object = object);
        let dictionary = RTCSessionDescriptionInit {
                sdp: {
                    rooted!(in(*cx) let mut rval = UndefinedValue());
                    if get_dictionary_property(*cx, object.handle(), "sdp", rval.handle_mut())? && !rval.is_undefined() {
                            match FromJSValConvertible::from_jsval(*cx, rval.handle(), StringificationBehavior::Default) {
                                Ok(ConversionResult::Success(strval)) => strval,
                                Ok(ConversionResult::Failure(error)) => {
                                    throw_type_error(*cx, &error);
                                    return Err(());

                                }
                                _ => { return Err(());
                             },
                            }
                    } else {
                            DOMString::from("")
                    }
                },
                type_: {
                    rooted!(in(*cx) let mut rval = UndefinedValue());
                    if get_dictionary_property(*cx, object.handle(), "type", rval.handle_mut())? && !rval.is_undefined() {
                            match FromJSValConvertible::from_jsval(*cx, rval.handle(), ()) {    Err(_) => { return Err(());
                             },
                                Ok(ConversionResult::Success(v)) => v,
                                Ok(ConversionResult::Failure(error)) => { throw_type_error(*cx, &error); return Err(());
                             },
                            }
                    } else {
                            throw_type_error(*cx, "Missing required member \"type\".");
                            return Err(());
                    }
                },
        };
            Ok(ConversionResult::Success(dictionary))
        }
    }
}

impl FromJSValConvertible for RTCSessionDescriptionInit {
    type Config = ();
    unsafe fn from_jsval(cx: *mut JSContext, value: HandleValue, _option: ())
                         -> Result<ConversionResult<RTCSessionDescriptionInit>, ()> {
        RTCSessionDescriptionInit::new(SafeJSContext::from_ptr(cx), value)
    }
}

impl RTCSessionDescriptionInit {
    pub(crate) unsafe fn to_jsobject(&self, cx: *mut JSContext, mut obj: MutableHandleObject) {
        let sdp = &self.sdp;
        rooted!(in(cx) let mut sdp_js = UndefinedValue());
        sdp.to_jsval(cx, sdp_js.handle_mut());
        set_dictionary_property(cx, obj.handle(), "sdp", sdp_js.handle()).unwrap();
        let type_ = &self.type_;
        rooted!(in(cx) let mut type__js = UndefinedValue());
        type_.to_jsval(cx, type__js.handle_mut());
        set_dictionary_property(cx, obj.handle(), "type", type__js.handle()).unwrap();
    }
}

impl ToJSValConvertible for RTCSessionDescriptionInit {
    unsafe fn to_jsval(&self, cx: *mut JSContext, mut rval: MutableHandleValue) {
        rooted!(in(cx) let mut obj = JS_NewObject(cx, ptr::null()));
        self.to_jsobject(cx, obj.handle_mut());
        rval.set(ObjectOrNullValue(obj.get()))
    }
}


pub use self::RTCSessionDescription_Binding::{Wrap, RTCSessionDescriptionMethods, GetProtoObject, DefineDOMInterface};
pub mod RTCSessionDescription_Binding {
use crate::dom;
use crate::dom::bindings::codegen::Bindings::RTCSessionDescriptionBinding::RTCSdpType;
use crate::dom::bindings::codegen::Bindings::RTCSessionDescriptionBinding::RTCSdpTypeValues;
use crate::dom::bindings::codegen::Bindings::RTCSessionDescriptionBinding::RTCSessionDescriptionInit;
use crate::dom::bindings::import::module::*;
use crate::dom::types::RTCSessionDescription;

unsafe extern fn get_type(cx: *mut JSContext, _obj: RawHandleObject, this: *mut libc::c_void, args: JSJitGetterCallArgs) -> bool {
    let mut result = false;
    wrap_panic(&mut || result = (|| {
        let cx = SafeJSContext::from_ptr(cx);
        let this = &*(this as *const RTCSessionDescription);
        let result: RTCSdpType = this.Type();

        (result).to_jsval(*cx, MutableHandleValue::from_raw(args.rval()));
        return true;
    })());
    result
}


const type_getterinfo: JSJitInfo = JSJitInfo {
    __bindgen_anon_1: JSJitInfo__bindgen_ty_1 {
        getter: Some(get_type)
    },
    __bindgen_anon_2: JSJitInfo__bindgen_ty_2 {
        protoID: PrototypeList::ID::RTCSessionDescription as u16,
    },
    __bindgen_anon_3: JSJitInfo__bindgen_ty_3 { depth: 0 },
    _bitfield_align_1: [],
    _bitfield_1: __BindgenBitfieldUnit::new(
        new_jsjitinfo_bitfield_1!(
            JSJitInfo_OpType::Getter as u8,
            JSJitInfo_AliasSet::AliasEverything as u8,
            JSValueType::JSVAL_TYPE_STRING as u8,
            true,
            false,
            false,
            false,
            false,
            false,
            0,
        ).to_ne_bytes()
    ),
};

unsafe extern fn get_sdp(cx: *mut JSContext, _obj: RawHandleObject, this: *mut libc::c_void, args: JSJitGetterCallArgs) -> bool {
    let mut result = false;
    wrap_panic(&mut || result = (|| {
        let cx = SafeJSContext::from_ptr(cx);
        let this = &*(this as *const RTCSessionDescription);
        let result: DOMString = this.Sdp();

        (result).to_jsval(*cx, MutableHandleValue::from_raw(args.rval()));
        return true;
    })());
    result
}


const sdp_getterinfo: JSJitInfo = JSJitInfo {
    __bindgen_anon_1: JSJitInfo__bindgen_ty_1 {
        getter: Some(get_sdp)
    },
    __bindgen_anon_2: JSJitInfo__bindgen_ty_2 {
        protoID: PrototypeList::ID::RTCSessionDescription as u16,
    },
    __bindgen_anon_3: JSJitInfo__bindgen_ty_3 { depth: 0 },
    _bitfield_align_1: [],
    _bitfield_1: __BindgenBitfieldUnit::new(
        new_jsjitinfo_bitfield_1!(
            JSJitInfo_OpType::Getter as u8,
            JSJitInfo_AliasSet::AliasEverything as u8,
            JSValueType::JSVAL_TYPE_STRING as u8,
            true,
            false,
            false,
            false,
            false,
            false,
            0,
        ).to_ne_bytes()
    ),
};

unsafe extern fn toJSON(cx: *mut JSContext, _obj: RawHandleObject, this: *mut libc::c_void, args: *const JSJitMethodCallArgs) -> bool {
    let mut result = false;
    wrap_panic(&mut || result = (|| {
        use crate::dom::bindings::inheritance::HasParent;
        rooted!(in(cx) let result = JS_NewPlainObject(cx));
        if result.is_null() {
          return false;
        }
        if !CollectJSONAttributes(cx, _obj, this, &result) {
            return false;
        }
        (*args).rval().set(ObjectValue(*result));
        true

    })());
    result
}


const toJSON_methodinfo: JSJitInfo = JSJitInfo {
    __bindgen_anon_1: JSJitInfo__bindgen_ty_1 {
        method: Some(toJSON)
    },
    __bindgen_anon_2: JSJitInfo__bindgen_ty_2 {
        protoID: PrototypeList::ID::RTCSessionDescription as u16,
    },
    __bindgen_anon_3: JSJitInfo__bindgen_ty_3 { depth: 0 },
    _bitfield_align_1: [],
    _bitfield_1: __BindgenBitfieldUnit::new(
        new_jsjitinfo_bitfield_1!(
            JSJitInfo_OpType::Method as u8,
            JSJitInfo_AliasSet::AliasEverything as u8,
            JSValueType::JSVAL_TYPE_OBJECT as u8,
            true,
            false,
            false,
            false,
            false,
            false,
            0,
        ).to_ne_bytes()
    ),
};

unsafe extern fn _finalize(_cx: *mut GCContext, obj: *mut JSObject) {
    wrap_panic(&mut || {

        let this = native_from_object_static::<RTCSessionDescription>(obj).unwrap();
        finalize_common(this);
    })
}

unsafe extern fn _trace(trc: *mut JSTracer, obj: *mut JSObject) {
    wrap_panic(&mut || {

        let this = native_from_object_static::<RTCSessionDescription>(obj).unwrap();
        if this.is_null() { return; } // GC during obj creation
        (*this).trace(trc);
    })
}

pub unsafe fn CollectJSONAttributes(cx: *mut JSContext, obj: RawHandleObject, this: *mut libc::c_void, result: &RootedGuard<*mut JSObject>) -> bool {
    let incumbent_global = GlobalScope::incumbent().expect("no incumbent global");
    let global = incumbent_global.reflector().get_jsobject();
    let conditions = &[Condition::Exposed(InterfaceObjectMap::Globals::WINDOW)];
    let is_satisfied = conditions.iter().any(|c|
         c.is_satisfied(
           SafeJSContext::from_ptr(cx),
           HandleObject::from_raw(obj),
           global));
    if is_satisfied {
      rooted!(in(cx) let mut temp = UndefinedValue());
      if !get_type(cx, obj, this, JSJitGetterCallArgs { _base: temp.handle_mut().into() }) {
        return false;
      }
      if !JS_DefineProperty(cx, result.handle(),
                            b"type\0" as *const u8 as *const libc::c_char,
                            temp.handle(), JSPROP_ENUMERATE as u32) {
        return false;
      }
    }
    let conditions = &[Condition::Exposed(InterfaceObjectMap::Globals::WINDOW)];
    let is_satisfied = conditions.iter().any(|c|
         c.is_satisfied(
           SafeJSContext::from_ptr(cx),
           HandleObject::from_raw(obj),
           global));
    if is_satisfied {
      rooted!(in(cx) let mut temp = UndefinedValue());
      if !get_sdp(cx, obj, this, JSJitGetterCallArgs { _base: temp.handle_mut().into() }) {
        return false;
      }
      if !JS_DefineProperty(cx, result.handle(),
                            b"sdp\0" as *const u8 as *const libc::c_char,
                            temp.handle(), JSPROP_ENUMERATE as u32) {
        return false;
      }
    }
    true

}

static CLASS_OPS: JSClassOps = JSClassOps {
    addProperty: None,
    delProperty: None,
    enumerate: None,
    newEnumerate: None,
    resolve: None,
    mayResolve: None,
    finalize: Some(_finalize),
    call: None,
    construct: None,
    trace: Some(_trace),
};

static Class: DOMJSClass = DOMJSClass {
    base: JSClass {
        name: b"RTCSessionDescription\0" as *const u8 as *const libc::c_char,
        flags: JSCLASS_IS_DOMJSCLASS | JSCLASS_FOREGROUND_FINALIZE |
               (((1) & JSCLASS_RESERVED_SLOTS_MASK) << JSCLASS_RESERVED_SLOTS_SHIFT)
               /* JSCLASS_HAS_RESERVED_SLOTS(1) */,
        cOps: &CLASS_OPS,
        spec: ptr::null(),
        ext: ptr::null(),
        oOps: ptr::null(),
    },
    dom_class: DOMClass {
    interface_chain: [ PrototypeList::ID::RTCSessionDescription, PrototypeList::ID::Last, PrototypeList::ID::Last, PrototypeList::ID::Last, PrototypeList::ID::Last, PrototypeList::ID::Last ],
    depth: 0,
    type_id: crate::dom::bindings::codegen::InheritTypes::TopTypeId { alone: () },
    malloc_size_of: malloc_size_of_including_raw_self::<RTCSessionDescription> as unsafe fn(&mut _, _) -> _,
    global: InterfaceObjectMap::Globals::EMPTY,
}
};

impl RTCSessionDescription {
    fn __assert_parent_type(&self) {
        use crate::dom::bindings::inheritance::HasParent;
        // If this type assertion fails, make sure the first field of your
        // DOM struct is of the correct type -- it must be the parent class.
        let _: &Reflector = self.as_parent();
    }
}

pub unsafe fn Wrap(cx: SafeJSContext, scope: &GlobalScope, given_proto: Option<HandleObject>, object: Box<RTCSessionDescription>) -> DomRoot<RTCSessionDescription> {
    let raw = Root::new(MaybeUnreflectedDom::from_box(object));

    let scope = scope.reflector().get_jsobject();
    assert!(!scope.get().is_null());
    assert!(((*get_object_class(scope.get())).flags & JSCLASS_IS_GLOBAL) != 0);
    let _ac = JSAutoRealm::new(*cx, scope.get());

    rooted!(in(*cx) let mut canonical_proto = ptr::null_mut::<JSObject>());
    GetProtoObject(cx, scope, canonical_proto.handle_mut());
    assert!(!canonical_proto.is_null());


    rooted!(in(*cx) let mut proto = ptr::null_mut::<JSObject>());
    if let Some(given) = given_proto {
        *proto = *given;
        if get_context_realm(*cx) != get_object_realm(*given) {
            assert!(JS_WrapObject(*cx, proto.handle_mut()));
        }
    } else {
        *proto = *canonical_proto;
    }
    rooted!(in(*cx) let obj = JS_NewObjectWithGivenProto(
        *cx,
        &Class.base,
        proto.handle(),
    ));
    assert!(!obj.is_null());
    JS_SetReservedSlot(
        obj.get(),
        DOM_OBJECT_SLOT,
        &PrivateValue(raw.as_ptr() as *const libc::c_void),
    );

    let root = raw.reflect_with(obj.get());



    DomRoot::from_ref(&*root)
}

impl DomObjectWrap for dom::rtcsessiondescription::RTCSessionDescription {
    const WRAP: unsafe fn(
        SafeJSContext,
        &GlobalScope,
        Option<HandleObject>,
        Box<Self>,
    ) -> Root<Dom<Self>> = Wrap;
}

impl IDLInterface for RTCSessionDescription {
    #[inline]
    fn derives(class: &'static DOMClass) -> bool {
        ptr::eq(class, &Class.dom_class)
    }
}

impl PartialEq for RTCSessionDescription {
    fn eq(&self, other: &RTCSessionDescription) -> bool {
        self as *const RTCSessionDescription == other
    }
}

pub trait RTCSessionDescriptionMethods {
    fn Type(&self) -> RTCSdpType;
    fn Sdp(&self) -> DOMString;
}
const sMethods_specs: &[&[JSFunctionSpec]] = &[
&[
    JSFunctionSpec {
        name: JSPropertySpec_Name { string_: b"toJSON\0" as *const u8 as *const libc::c_char },
        call: JSNativeWrapper { op: Some(generic_method), info: &toJSON_methodinfo as *const _ as *const JSJitInfo },
        nargs: 0,
        flags: (JSPROP_ENUMERATE) as u16,
        selfHostedName: 0 as *const libc::c_char
    },
    JSFunctionSpec {
        name: JSPropertySpec_Name { string_: ptr::null() },
        call: JSNativeWrapper { op: None, info: ptr::null() },
        nargs: 0,
        flags: 0,
        selfHostedName: ptr::null()
    }]

];
const sMethods: &[Guard<&[JSFunctionSpec]>] = &[
    Guard::new(Condition::Exposed(InterfaceObjectMap::Globals::WINDOW), sMethods_specs[0])
];
const sAttributes_specs: &[&[JSPropertySpec]] = &[
&[
    JSPropertySpec {
                    name: JSPropertySpec_Name { string_: b"type\0" as *const u8 as *const libc::c_char },
                    attributes_: (JSPROP_ENUMERATE),
                    kind_: (JSPropertySpec_Kind::NativeAccessor),
                    u: JSPropertySpec_AccessorsOrValue {
                        accessors: JSPropertySpec_AccessorsOrValue_Accessors {
                            getter: JSPropertySpec_Accessor {
                                native: JSNativeWrapper { op: Some(generic_getter), info: &type_getterinfo },
                            },
                            setter: JSPropertySpec_Accessor {
                                native: JSNativeWrapper { op: None, info: 0 as *const JSJitInfo },
                            }
                        }
                    }
                }
,
    JSPropertySpec {
                    name: JSPropertySpec_Name { string_: b"sdp\0" as *const u8 as *const libc::c_char },
                    attributes_: (JSPROP_ENUMERATE),
                    kind_: (JSPropertySpec_Kind::NativeAccessor),
                    u: JSPropertySpec_AccessorsOrValue {
                        accessors: JSPropertySpec_AccessorsOrValue_Accessors {
                            getter: JSPropertySpec_Accessor {
                                native: JSNativeWrapper { op: Some(generic_getter), info: &sdp_getterinfo },
                            },
                            setter: JSPropertySpec_Accessor {
                                native: JSNativeWrapper { op: None, info: 0 as *const JSJitInfo },
                            }
                        }
                    }
                }
,
    JSPropertySpec::ZERO]
,
&[
    JSPropertySpec {
                    name: JSPropertySpec_Name { symbol_: SymbolCode::toStringTag as usize + 1 },
                    attributes_: (JSPROP_READONLY),
                    kind_: (JSPropertySpec_Kind::Value),
                    u: JSPropertySpec_AccessorsOrValue {
                        value: JSPropertySpec_ValueWrapper {
                            type_: JSPropertySpec_ValueWrapper_Type::String,
                            __bindgen_anon_1: JSPropertySpec_ValueWrapper__bindgen_ty_1 {
                                string: b"RTCSessionDescription\0" as *const u8 as *const libc::c_char,
                            }
                        }
                    }
                }
,
    JSPropertySpec::ZERO]

];
const sAttributes: &[Guard<&[JSPropertySpec]>] = &[
    Guard::new(Condition::Exposed(InterfaceObjectMap::Globals::WINDOW), sAttributes_specs[0]),
    Guard::new(Condition::Satisfied, sAttributes_specs[1])
];

pub fn GetProtoObject(cx: SafeJSContext, global: HandleObject, mut rval: MutableHandleObject) {
    /* Get the interface prototype object for this class.  This will create the
       object as needed. */
            get_per_interface_object_handle(cx, global, ProtoOrIfaceIndex::ID(PrototypeList::ID::RTCSessionDescription), CreateInterfaceObjects, rval)

}

static PrototypeClass: JSClass = JSClass {
    name: b"RTCSessionDescriptionPrototype\0" as *const u8 as *const libc::c_char,
    flags:
        // JSCLASS_HAS_RESERVED_SLOTS(0)
        (0 ) << JSCLASS_RESERVED_SLOTS_SHIFT,
    cOps: 0 as *const _,
    spec: ptr::null(),
    ext: ptr::null(),
    oOps: ptr::null(),
};

unsafe extern fn _constructor(cx: *mut JSContext, argc: u32, vp: *mut JSVal) -> bool {
    let mut result = false;
    wrap_panic(&mut || result = (|| {
        let cx = SafeJSContext::from_ptr(cx);
        let args = CallArgs::from_vp(vp, argc);
        let global = GlobalScope::from_object(JS_CALLEE(*cx, vp).to_object());
        let global = DomRoot::downcast::<dom::types::Window>(global).unwrap();

        if !callargs_is_constructing(&args) {
          throw_constructor_without_new(*cx, "RTCSessionDescription");
          return false;
        }

        rooted!(in(*cx) let mut desired_proto = ptr::null_mut::<JSObject>());
        let proto_result = get_desired_proto(
          cx,
          &args,
          PrototypeList::ID::RTCSessionDescription,
          CreateInterfaceObjects,
          desired_proto.handle_mut(),
        );
        assert!(proto_result.is_ok());
        if proto_result.is_err() {
          return false;
        }

        if argc < 1 {
            throw_type_error(*cx, "Not enough arguments to \"RTCSessionDescription.constructor\".");
            return false;
        }
        let arg0: crate::dom::bindings::codegen::Bindings::RTCSessionDescriptionBinding::RTCSessionDescriptionInit = match FromJSValConvertible::from_jsval(*cx, HandleValue::from_raw(args.get(0)), ()) {
            Ok(ConversionResult::Success(dictionary)) => dictionary,
            Ok(ConversionResult::Failure(error)) => {
                throw_type_error(*cx, &error);
                return false;

            }
            _ => { return false;
         },
        };
        let result: Result<DomRoot<RTCSessionDescription>, Error> = RTCSessionDescription::Constructor(&global, Some(desired_proto.handle()), &arg0);
        let result = match result {
            Ok(result) => result,
            Err(e) => {
                throw_dom_exception(cx, global.upcast::<GlobalScope>(), e);
                return false;
            },
        };

        (result).to_jsval(*cx, MutableHandleValue::from_raw(args.rval()));
        return true;
    })());
    result
}

static INTERFACE_OBJECT_CLASS: NonCallbackInterfaceObjectClass =
    NonCallbackInterfaceObjectClass::new(
        {
            // Intermediate `const` because as of nightly-2018-10-05,
            // rustc is conservative in promotion to `'static` of the return values of `const fn`s:
            // https://github.com/rust-lang/rust/issues/54846
            // https://github.com/rust-lang/rust/pull/53851
            const BEHAVIOR: InterfaceConstructorBehavior = InterfaceConstructorBehavior::call(_constructor);
            &BEHAVIOR
        },
        b"function RTCSessionDescription() {\n    [native code]\n}",
        PrototypeList::ID::RTCSessionDescription,
        0);

pub fn DefineDOMInterface(cx: SafeJSContext, global: HandleObject) {

            define_dom_interface(cx, global, ProtoOrIfaceIndex::ID(PrototypeList::ID::RTCSessionDescription), CreateInterfaceObjects, ConstructorEnabled)

}

fn ConstructorEnabled(aCx: SafeJSContext, aObj: HandleObject) -> bool {
    is_exposed_in(aObj, InterfaceObjectMap::Globals::WINDOW) &&
    pref!(dom.webrtc.enabled)
}

unsafe fn CreateInterfaceObjects(cx: SafeJSContext, global: HandleObject, cache: *mut ProtoOrIfaceArray) {
    rooted!(in(*cx) let mut prototype_proto = ptr::null_mut::<JSObject>());
    prototype_proto.set(GetRealmObjectPrototype(*cx));
    assert!(!prototype_proto.is_null());

    rooted!(in(*cx) let mut prototype = ptr::null_mut::<JSObject>());
    create_interface_prototype_object(cx,
                                      global,
                                      prototype_proto.handle(),
                                      &PrototypeClass,
                                      sMethods,
                                      sAttributes,
                                      &[],
                                      &[],
                                      prototype.handle_mut());
    assert!(!prototype.is_null());
    assert!((*cache)[PrototypeList::ID::RTCSessionDescription as usize].is_null());
    (*cache)[PrototypeList::ID::RTCSessionDescription as usize] = prototype.get();
    <*mut JSObject>::post_barrier((*cache).as_mut_ptr().offset(PrototypeList::ID::RTCSessionDescription as isize),
                                  ptr::null_mut(),
                                  prototype.get());

    rooted!(in(*cx) let mut interface_proto = ptr::null_mut::<JSObject>());
    interface_proto.set(GetRealmFunctionPrototype(*cx));
    assert!(!interface_proto.is_null());

    rooted!(in(*cx) let mut interface = ptr::null_mut::<JSObject>());
    create_noncallback_interface_object(cx,
                                        global,
                                        interface_proto.handle(),
                                        &INTERFACE_OBJECT_CLASS,
                                        &[],
                                        &[],
                                        &[],
                                        prototype.handle(),
                                        b"RTCSessionDescription\0",
                                        1,
                                        &[],
                                        interface.handle_mut());
    assert!(!interface.is_null());
}
} // mod RTCSessionDescription_Binding