Line data Source code
1 : /* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
2 : /* vim:set ts=2 sw=2 sts=2 et cindent: */
3 : /* This Source Code Form is subject to the terms of the Mozilla Public
4 : * License, v. 2.0. If a copy of the MPL was not distributed with this
5 : * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
6 :
7 : /* THIS FILE IS AUTOGENERATED FROM CloseEvent.webidl BY Codegen.py - DO NOT EDIT */
8 :
9 : #include "CloseEvent.h"
10 : #include "CloseEventBinding.h"
11 : #include "EventBinding.h"
12 : #include "js/GCAPI.h"
13 : #include "mozilla/dom/CloseEvent.h"
14 : #include "mozilla/dom/Nullable.h"
15 : #include "mozilla/dom/PrimitiveConversions.h"
16 :
17 : namespace mozilla {
18 : namespace dom {
19 :
20 :
21 : NS_IMPL_CYCLE_COLLECTION_CLASS(CloseEvent)
22 :
23 0 : NS_IMPL_ADDREF_INHERITED(CloseEvent, Event)
24 0 : NS_IMPL_RELEASE_INHERITED(CloseEvent, Event)
25 :
26 0 : NS_IMPL_CYCLE_COLLECTION_TRAVERSE_BEGIN_INHERITED(CloseEvent, Event)
27 0 : NS_IMPL_CYCLE_COLLECTION_TRAVERSE_END
28 :
29 0 : NS_IMPL_CYCLE_COLLECTION_TRACE_BEGIN_INHERITED(CloseEvent, Event)
30 0 : NS_IMPL_CYCLE_COLLECTION_TRACE_END
31 :
32 0 : NS_IMPL_CYCLE_COLLECTION_UNLINK_BEGIN_INHERITED(CloseEvent, Event)
33 0 : NS_IMPL_CYCLE_COLLECTION_UNLINK_END
34 :
35 0 : NS_INTERFACE_MAP_BEGIN_CYCLE_COLLECTION_INHERITED(CloseEvent)
36 0 : NS_INTERFACE_MAP_END_INHERITING(Event)
37 :
38 0 : CloseEvent::CloseEvent(mozilla::dom::EventTarget* aOwner)
39 0 : : Event(aOwner, nullptr, nullptr)
40 : {
41 0 : }
42 :
43 0 : CloseEvent::~CloseEvent()
44 : {
45 0 : }
46 :
47 : CloseEvent*
48 0 : CloseEvent::AsCloseEvent()
49 : {
50 0 : return this;
51 : }
52 :
53 : JSObject*
54 0 : CloseEvent::WrapObjectInternal(JSContext* aCx, JS::Handle<JSObject*> aGivenProto)
55 : {
56 0 : return CloseEventBinding::Wrap(aCx, this, aGivenProto);
57 : }
58 :
59 : already_AddRefed<CloseEvent>
60 0 : CloseEvent::Constructor(mozilla::dom::EventTarget* aOwner, const nsAString& aType, const CloseEventInit& aEventInitDict)
61 : {
62 0 : RefPtr<CloseEvent> e = new CloseEvent(aOwner);
63 0 : bool trusted = e->Init(aOwner);
64 0 : e->InitEvent(aType, aEventInitDict.mBubbles, aEventInitDict.mCancelable);
65 0 : e->mWasClean = aEventInitDict.mWasClean;
66 0 : e->mCode = aEventInitDict.mCode;
67 0 : e->mReason = aEventInitDict.mReason;
68 0 : e->SetTrusted(trusted);
69 0 : e->SetComposed(aEventInitDict.mComposed);
70 0 : return e.forget();
71 : }
72 :
73 : already_AddRefed<CloseEvent>
74 0 : CloseEvent::Constructor(const GlobalObject& aGlobal, const nsAString& aType, const CloseEventInit& aEventInitDict, ErrorResult& aRv)
75 : {
76 0 : nsCOMPtr<mozilla::dom::EventTarget> owner = do_QueryInterface(aGlobal.GetAsSupports());
77 0 : return Constructor(owner, aType, aEventInitDict);
78 : }
79 :
80 : bool
81 0 : CloseEvent::WasClean() const
82 : {
83 0 : return mWasClean;
84 : }
85 :
86 : uint16_t
87 0 : CloseEvent::Code() const
88 : {
89 0 : return mCode;
90 : }
91 :
92 : void
93 0 : CloseEvent::GetReason(nsString& aRetVal) const
94 : {
95 0 : aRetVal = mReason;
96 0 : }
97 :
98 :
99 : } // namespace dom
100 : } // namespace mozilla
|