Line data Source code
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_SVGGElement_h
8 : #define mozilla_dom_SVGGElement_h
9 :
10 : #include "mozilla/dom/SVGGraphicsElement.h"
11 :
12 : nsresult NS_NewSVGGElement(nsIContent **aResult,
13 : already_AddRefed<mozilla::dom::NodeInfo>&& aNodeInfo);
14 :
15 : namespace mozilla {
16 : namespace dom {
17 :
18 0 : class SVGGElement final : public SVGGraphicsElement
19 : {
20 : protected:
21 : explicit SVGGElement(already_AddRefed<mozilla::dom::NodeInfo>& aNodeInfo);
22 : virtual JSObject* WrapNode(JSContext *cx, JS::Handle<JSObject*> aGivenProto) override;
23 : friend nsresult (::NS_NewSVGGElement(nsIContent **aResult,
24 : already_AddRefed<mozilla::dom::NodeInfo>&& aNodeInfo));
25 :
26 : public:
27 : // nsIContent
28 : NS_IMETHOD_(bool) IsAttributeMapped(const nsIAtom* aAttribute) const override;
29 :
30 : virtual nsresult Clone(mozilla::dom::NodeInfo *aNodeInfo, nsINode **aResult,
31 : bool aPreallocateChildren) const override;
32 : };
33 :
34 : } // namespace dom
35 : } // namespace mozilla
36 :
37 : #endif // mozilla_dom_SVGGElement_h
|