/work/obj-fuzz/dist/include/mozilla/dom/SVGFEGaussianBlurElement.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_SVGFEGaussianBlurElement_h |
8 | | #define mozilla_dom_SVGFEGaussianBlurElement_h |
9 | | |
10 | | #include "nsSVGFilters.h" |
11 | | #include "nsSVGNumberPair.h" |
12 | | #include "nsSVGString.h" |
13 | | |
14 | | nsresult NS_NewSVGFEGaussianBlurElement(nsIContent **aResult, |
15 | | already_AddRefed<mozilla::dom::NodeInfo>&& aNodeInfo); |
16 | | |
17 | | namespace mozilla { |
18 | | namespace dom { |
19 | | |
20 | | typedef nsSVGFE SVGFEGaussianBlurElementBase; |
21 | | |
22 | | class SVGFEGaussianBlurElement : public SVGFEGaussianBlurElementBase |
23 | | { |
24 | | friend nsresult (::NS_NewSVGFEGaussianBlurElement(nsIContent **aResult, |
25 | | already_AddRefed<mozilla::dom::NodeInfo>&& aNodeInfo)); |
26 | | protected: |
27 | | explicit SVGFEGaussianBlurElement(already_AddRefed<mozilla::dom::NodeInfo>&& aNodeInfo) |
28 | | : SVGFEGaussianBlurElementBase(std::move(aNodeInfo)) |
29 | 0 | { |
30 | 0 | } |
31 | | virtual JSObject* WrapNode(JSContext* aCx, JS::Handle<JSObject*> aGivenProto) override; |
32 | | |
33 | | public: |
34 | | virtual FilterPrimitiveDescription |
35 | | GetPrimitiveDescription(nsSVGFilterInstance* aInstance, |
36 | | const IntRect& aFilterSubregion, |
37 | | const nsTArray<bool>& aInputsAreTainted, |
38 | | nsTArray<RefPtr<SourceSurface>>& aInputImages) override; |
39 | | virtual bool AttributeAffectsRendering( |
40 | | int32_t aNameSpaceID, nsAtom* aAttribute) const override; |
41 | 0 | virtual nsSVGString& GetResultImageName() override { return mStringAttributes[RESULT]; } |
42 | | virtual void GetSourceImageNames(nsTArray<nsSVGStringInfo >& aSources) override; |
43 | | |
44 | | virtual nsresult Clone(dom::NodeInfo*, nsINode** aResult) const override; |
45 | | |
46 | | // WebIDL |
47 | | already_AddRefed<SVGAnimatedString> In1(); |
48 | | already_AddRefed<SVGAnimatedNumber> StdDeviationX(); |
49 | | already_AddRefed<SVGAnimatedNumber> StdDeviationY(); |
50 | | void SetStdDeviation(float stdDeviationX, float stdDeviationY); |
51 | | |
52 | | protected: |
53 | | virtual NumberPairAttributesInfo GetNumberPairInfo() override; |
54 | | virtual StringAttributesInfo GetStringInfo() override; |
55 | | |
56 | | enum { STD_DEV }; |
57 | | nsSVGNumberPair mNumberPairAttributes[1]; |
58 | | static NumberPairInfo sNumberPairInfo[1]; |
59 | | |
60 | | enum { RESULT, IN1 }; |
61 | | nsSVGString mStringAttributes[2]; |
62 | | static StringInfo sStringInfo[2]; |
63 | | }; |
64 | | |
65 | | } // namespace dom |
66 | | } // namespace mozilla |
67 | | |
68 | | #endif // mozilla_dom_SVGFEGaussianBlurElement_h |