tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

ConstructibleEventTarget.h (1116B)


      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 "js/RootingAPI.h"
     11 #include "mozilla/DOMEventTargetHelper.h"
     12 
     13 namespace mozilla::dom {
     14 
     15 class ConstructibleEventTarget : public DOMEventTargetHelper {
     16 public:
     17  // Not worrying about isupports and cycle collection here.  This does mean
     18  // ConstructibleEventTarget will show up in CC and refcount logs as a
     19  // DOMEventTargetHelper, but that's probably OK.
     20 
     21  explicit ConstructibleEventTarget(nsIGlobalObject* aGlobalObject)
     22      : DOMEventTargetHelper(aGlobalObject) {}
     23 
     24  virtual JSObject* WrapObject(JSContext* cx,
     25                               JS::Handle<JSObject*> aGivenProto) override;
     26 };
     27 
     28 }  // namespace mozilla::dom
     29 
     30 #endif  // mozilla_dom_ConstructibleEventTarget_h_