/work/obj-fuzz/dist/include/mozilla/dom/ConstructibleEventTarget.h
Line | Count | Source (jump to first uncovered line) |
1 | | /* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */ |
2 | | /* vim: set ts=8 sts=2 et sw=2 tw=80: */ |
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 | | #ifndef mozilla_dom_ConstructibleEventTarget_h_ |
8 | | #define mozilla_dom_ConstructibleEventTarget_h_ |
9 | | |
10 | | #include "mozilla/DOMEventTargetHelper.h" |
11 | | #include "js/RootingAPI.h" |
12 | | |
13 | | namespace mozilla { |
14 | | namespace dom { |
15 | | |
16 | | class ConstructibleEventTarget : public DOMEventTargetHelper |
17 | | { |
18 | | public: |
19 | | // Not worrying about isupports and cycle collection here. This does mean |
20 | | // ConstructibleEventTarget will show up in CC and refcount logs as a |
21 | | // DOMEventTargetHelper, but that's probably OK. |
22 | | |
23 | | explicit ConstructibleEventTarget(nsIGlobalObject* aGlobalObject) |
24 | | : DOMEventTargetHelper(aGlobalObject) |
25 | 0 | { |
26 | 0 | } |
27 | | |
28 | | virtual JSObject* WrapObject(JSContext* cx, |
29 | | JS::Handle<JSObject*> aGivenProto) override; |
30 | | }; |
31 | | |
32 | | } // namespace dom |
33 | | } // namespace mozilla |
34 | | |
35 | | #endif // mozilla_dom_ConstructibleEventTarget_h_ |