Bug 1691109 [wpt PR 27513] - Increase timeout duration for wpt/fetch/api/basic/keepal...
[gecko.git] / dom / svg / SVGSymbolElement.h
blob41784bc460e99fa8c6ab127780bb4c3e80551661
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/. */
7 #ifndef DOM_SVG_SVGSYMBOLELEMENT_H_
8 #define DOM_SVG_SVGSYMBOLELEMENT_H_
10 #include "SVGViewportElement.h"
12 nsresult NS_NewSVGSymbolElement(
13 nsIContent** aResult, already_AddRefed<mozilla::dom::NodeInfo>&& aNodeInfo);
15 namespace mozilla {
16 namespace dom {
18 using SVGSymbolElementBase = SVGViewportElement;
20 class SVGSymbolElement final : public SVGSymbolElementBase {
21 protected:
22 friend nsresult(::NS_NewSVGSymbolElement(
23 nsIContent** aResult,
24 already_AddRefed<mozilla::dom::NodeInfo>&& aNodeInfo));
25 explicit SVGSymbolElement(
26 already_AddRefed<mozilla::dom::NodeInfo>&& aNodeInfo);
27 ~SVGSymbolElement() = default;
28 virtual JSObject* WrapNode(JSContext* cx,
29 JS::Handle<JSObject*> aGivenProto) override;
31 public:
32 // interfaces:
33 NS_DECL_ISUPPORTS_INHERITED
35 virtual nsresult Clone(dom::NodeInfo*, nsINode** aResult) const override;
38 } // namespace dom
39 } // namespace mozilla
41 #endif // DOM_SVG_SVGSYMBOLELEMENT_H_