Coverage Report

Created: 2018-09-25 14:53

/work/obj-fuzz/dist/include/mozilla/dom/SVGFEMergeNodeElement.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_SVGFEMergeNodeElement_h
8
#define mozilla_dom_SVGFEMergeNodeElement_h
9
10
#include "nsSVGFilters.h"
11
12
nsresult NS_NewSVGFEMergeNodeElement(nsIContent** aResult,
13
                                     already_AddRefed<mozilla::dom::NodeInfo>&& aNodeInfo);
14
15
namespace mozilla {
16
namespace dom {
17
18
typedef SVGFEUnstyledElement SVGFEMergeNodeElementBase;
19
20
class SVGFEMergeNodeElement : public SVGFEMergeNodeElementBase
21
{
22
  friend nsresult (::NS_NewSVGFEMergeNodeElement(nsIContent **aResult,
23
                                                 already_AddRefed<mozilla::dom::NodeInfo>&& aNodeInfo));
24
protected:
25
  explicit SVGFEMergeNodeElement(already_AddRefed<mozilla::dom::NodeInfo>&& aNodeInfo)
26
    : SVGFEMergeNodeElementBase(std::move(aNodeInfo))
27
0
  {
28
0
  }
29
  virtual JSObject* WrapNode(JSContext* aCx, JS::Handle<JSObject*> aGivenProto) override;
30
31
public:
32
  virtual nsresult Clone(dom::NodeInfo*, nsINode** aResult) const override;
33
34
  virtual bool AttributeAffectsRendering(
35
          int32_t aNameSpaceID, nsAtom* aAttribute) const override;
36
37
0
  const nsSVGString* GetIn1() { return &mStringAttributes[IN1]; }
38
39
  // WebIDL
40
  already_AddRefed<SVGAnimatedString> In1();
41
42
protected:
43
  virtual StringAttributesInfo GetStringInfo() override;
44
45
  enum { IN1 };
46
  nsSVGString mStringAttributes[1];
47
  static StringInfo sStringInfo[1];
48
};
49
50
} // namespace dom
51
} // namespace mozilla
52
53
#endif // mozilla_dom_SVGFEMergeNodeElement_h