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 PerformanceEntryEvent.webidl BY Codegen.py - DO NOT EDIT */
8 :
9 : #ifndef mozilla_dom_PerformanceEntryEvent_h
10 : #define mozilla_dom_PerformanceEntryEvent_h
11 :
12 : #include "mozilla/Attributes.h"
13 : #include "mozilla/ErrorResult.h"
14 : #include "mozilla/dom/BindingUtils.h"
15 : #include "mozilla/dom/Event.h"
16 : #include "mozilla/dom/PerformanceEntryEventBinding.h"
17 :
18 : struct JSContext;
19 : namespace mozilla {
20 : namespace dom {
21 :
22 : class PerformanceEntryEvent : public Event
23 : {
24 : public:
25 : NS_DECL_ISUPPORTS_INHERITED
26 0 : NS_DECL_CYCLE_COLLECTION_SCRIPT_HOLDER_CLASS_INHERITED(PerformanceEntryEvent, Event)
27 : protected:
28 : virtual ~PerformanceEntryEvent();
29 : explicit PerformanceEntryEvent(mozilla::dom::EventTarget* aOwner);
30 :
31 : nsString mName;
32 : nsString mEntryType;
33 : double mStartTime;
34 : double mDuration;
35 : double mEpoch;
36 : nsString mOrigin;
37 :
38 : public:
39 : virtual PerformanceEntryEvent* AsPerformanceEntryEvent() override;
40 :
41 : virtual JSObject* WrapObjectInternal(JSContext* aCx, JS::Handle<JSObject*> aGivenProto) override;
42 :
43 : static already_AddRefed<PerformanceEntryEvent> Constructor(mozilla::dom::EventTarget* aOwner, const nsAString& aType, const PerformanceEntryEventInit& aEventInitDict);
44 :
45 : static already_AddRefed<PerformanceEntryEvent> Constructor(const GlobalObject& aGlobal, const nsAString& aType, const PerformanceEntryEventInit& aEventInitDict, ErrorResult& aRv);
46 :
47 : void GetName(nsString& aRetVal) const;
48 :
49 : void GetEntryType(nsString& aRetVal) const;
50 :
51 : double StartTime() const;
52 :
53 : double Duration() const;
54 :
55 : double Epoch() const;
56 :
57 : void GetOrigin(nsString& aRetVal) const;
58 : };
59 :
60 : } // namespace dom
61 : } // namespace mozilla
62 :
63 : #endif // mozilla_dom_PerformanceEntryEvent_h
|