Coverage Report

Created: 2018-09-25 14:53

/work/obj-fuzz/dist/include/mozilla/dom/SVGFEBlendElement.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_SVGFEBlendElement_h
8
#define mozilla_dom_SVGFEBlendElement_h
9
10
#include "nsSVGFilters.h"
11
#include "nsSVGEnum.h"
12
13
nsresult NS_NewSVGFEBlendElement(nsIContent **aResult,
14
                                 already_AddRefed<mozilla::dom::NodeInfo>&& aNodeInfo);
15
namespace mozilla {
16
namespace dom {
17
18
typedef nsSVGFE SVGFEBlendElementBase;
19
20
class SVGFEBlendElement : public SVGFEBlendElementBase
21
{
22
  friend nsresult (::NS_NewSVGFEBlendElement(nsIContent **aResult,
23
                                             already_AddRefed<mozilla::dom::NodeInfo>&& aNodeInfo));
24
protected:
25
  explicit SVGFEBlendElement(already_AddRefed<mozilla::dom::NodeInfo>&& aNodeInfo)
26
    : SVGFEBlendElementBase(std::move(aNodeInfo))
27
0
  {
28
0
  }
29
  virtual JSObject* WrapNode(JSContext *cx, JS::Handle<JSObject*> aGivenProto) override;
30
31
public:
32
  virtual FilterPrimitiveDescription
33
    GetPrimitiveDescription(nsSVGFilterInstance* aInstance,
34
                            const IntRect& aFilterSubregion,
35
                            const nsTArray<bool>& aInputsAreTainted,
36
                            nsTArray<RefPtr<SourceSurface>>& aInputImages) override;
37
  virtual bool AttributeAffectsRendering(
38
          int32_t aNameSpaceID, nsAtom* aAttribute) const override;
39
0
  virtual nsSVGString& GetResultImageName() override { return mStringAttributes[RESULT]; }
40
  virtual void GetSourceImageNames(nsTArray<nsSVGStringInfo>& aSources) override;
41
42
  virtual nsresult Clone(dom::NodeInfo*, nsINode** aResult) const override;
43
44
  // WebIDL
45
  already_AddRefed<SVGAnimatedString> In1();
46
  already_AddRefed<SVGAnimatedString> In2();
47
  already_AddRefed<SVGAnimatedEnumeration> Mode();
48
49
protected:
50
51
  virtual EnumAttributesInfo GetEnumInfo() override;
52
  virtual StringAttributesInfo GetStringInfo() override;
53
54
  enum { MODE };
55
  nsSVGEnum mEnumAttributes[1];
56
  static nsSVGEnumMapping sModeMap[];
57
  static EnumInfo sEnumInfo[1];
58
59
  enum { RESULT, IN1, IN2 };
60
  nsSVGString mStringAttributes[3];
61
  static StringInfo sStringInfo[3];
62
};
63
64
} // namespace dom
65
} // namespace mozilla
66
67
#endif // mozilla_dom_SVGFEBlendElement_h