Coverage Report

Created: 2018-09-25 14:53

/work/obj-fuzz/dom/bindings/PopStateEvent.cpp
Line
Count
Source (jump to first uncovered line)
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 PopStateEvent.webidl BY Codegen.py - DO NOT EDIT */
8
9
#include "EventBinding.h"
10
#include "PopStateEvent.h"
11
#include "PopStateEventBinding.h"
12
#include "js/GCAPI.h"
13
#include "mozilla/dom/Nullable.h"
14
#include "mozilla/dom/PopStateEvent.h"
15
#include "mozilla/dom/PrimitiveConversions.h"
16
17
namespace mozilla {
18
namespace dom {
19
20
21
NS_IMPL_CYCLE_COLLECTION_CLASS(PopStateEvent)
22
23
NS_IMPL_ADDREF_INHERITED(PopStateEvent, Event)
24
NS_IMPL_RELEASE_INHERITED(PopStateEvent, Event)
25
26
0
NS_IMPL_CYCLE_COLLECTION_TRAVERSE_BEGIN_INHERITED(PopStateEvent, Event)
27
0
NS_IMPL_CYCLE_COLLECTION_TRAVERSE_END
28
29
0
NS_IMPL_CYCLE_COLLECTION_TRACE_BEGIN_INHERITED(PopStateEvent, Event)
30
0
  NS_IMPL_CYCLE_COLLECTION_TRACE_JS_MEMBER_CALLBACK(mState)
31
0
NS_IMPL_CYCLE_COLLECTION_TRACE_END
32
33
0
NS_IMPL_CYCLE_COLLECTION_UNLINK_BEGIN_INHERITED(PopStateEvent, Event)
34
0
  tmp->mState.setUndefined();
35
0
NS_IMPL_CYCLE_COLLECTION_UNLINK_END
36
37
0
NS_INTERFACE_MAP_BEGIN_CYCLE_COLLECTION(PopStateEvent)
38
0
NS_INTERFACE_MAP_END_INHERITING(Event)
39
40
PopStateEvent::PopStateEvent(mozilla::dom::EventTarget* aOwner)
41
  : Event(aOwner, nullptr, nullptr)
42
0
{
43
0
}
44
45
PopStateEvent::~PopStateEvent()
46
0
{
47
0
  mState = JS::UndefinedValue();
48
0
  mozilla::DropJSObjects(this);
49
0
}
50
51
void
52
PopStateEvent::GetState(JS::MutableHandle<JS::Value> aRetVal) const
53
0
{
54
0
  JS::ExposeValueToActiveJS(mState);
55
0
  aRetVal.set(mState);
56
0
}
57
58
PopStateEvent*
59
PopStateEvent::AsPopStateEvent()
60
0
{
61
0
  return this;
62
0
}
63
64
JSObject*
65
PopStateEvent::WrapObjectInternal(JSContext* aCx, JS::Handle<JSObject*> aGivenProto)
66
0
{
67
0
  return PopStateEvent_Binding::Wrap(aCx, this, aGivenProto);
68
0
}
69
70
already_AddRefed<PopStateEvent>
71
PopStateEvent::Constructor(mozilla::dom::EventTarget* aOwner, const nsAString& aType, const PopStateEventInit& aEventInitDict)
72
0
{
73
0
  RefPtr<PopStateEvent> e = new PopStateEvent(aOwner);
74
0
  bool trusted = e->Init(aOwner);
75
0
  e->InitEvent(aType, aEventInitDict.mBubbles, aEventInitDict.mCancelable);
76
0
  e->mState = aEventInitDict.mState;
77
0
  e->SetTrusted(trusted);
78
0
  e->SetComposed(aEventInitDict.mComposed);
79
0
  mozilla::HoldJSObjects(e.get());
80
0
  return e.forget();
81
0
}
82
83
already_AddRefed<PopStateEvent>
84
PopStateEvent::Constructor(const GlobalObject& aGlobal, const nsAString& aType, const PopStateEventInit& aEventInitDict, ErrorResult& aRv)
85
0
{
86
0
  nsCOMPtr<mozilla::dom::EventTarget> owner = do_QueryInterface(aGlobal.GetAsSupports());
87
0
  return Constructor(owner, aType, aEventInitDict);
88
0
}
89
90
void
91
PopStateEvent::GetState(JSContext* cx, JS::MutableHandle<JS::Value> aRetVal) const
92
0
{
93
0
  GetState(aRetVal);
94
0
}
95
96
97
} // namespace dom
98
} // namespace mozilla