tor-browser

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

HTMLUnknownElement.h (1224B)


      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 #ifndef mozilla_dom_HTMLUnknownElement_h
      7 #define mozilla_dom_HTMLUnknownElement_h
      8 
      9 #include "nsGenericHTMLElement.h"
     10 
     11 namespace mozilla::dom {
     12 
     13 #define NS_HTMLUNKNOWNELEMENT_IID \
     14  {0xc09e665b, 0x3876, 0x40dd, {0x85, 0x28, 0x44, 0xc2, 0x3f, 0xd4, 0x58, 0xf2}}
     15 
     16 class HTMLUnknownElement final : public nsGenericHTMLElement {
     17 public:
     18  NS_INLINE_DECL_STATIC_IID(NS_HTMLUNKNOWNELEMENT_IID)
     19 
     20  NS_DECL_ISUPPORTS_INHERITED
     21 
     22  explicit HTMLUnknownElement(
     23      already_AddRefed<mozilla::dom::NodeInfo>&& aNodeInfo)
     24      : nsGenericHTMLElement(std::move(aNodeInfo)) {}
     25 
     26  virtual nsresult Clone(dom::NodeInfo*, nsINode** aResult) const override;
     27 
     28 protected:
     29  virtual ~HTMLUnknownElement() = default;
     30  virtual JSObject* WrapNode(JSContext* aCx,
     31                             JS::Handle<JSObject*> aGivenProto) override;
     32 };
     33 
     34 }  // namespace mozilla::dom
     35 
     36 #endif /* mozilla_dom_HTMLUnknownElement_h */