Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(9)

Side by Side Diff: Source/core/svg/SVGFEConvolveMatrixElement.h

Issue 478243002: bindings: Adds virtual ScriptWrappable::wrap method. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Synced. Created 6 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « Source/core/svg/SVGFECompositeElement.h ('k') | Source/core/svg/SVGFEDiffuseLightingElement.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2009 Dirk Schulze <krit@webkit.org> 2 * Copyright (C) 2009 Dirk Schulze <krit@webkit.org>
3 * 3 *
4 * This library is free software; you can redistribute it and/or 4 * This library is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU Library General Public 5 * modify it under the terms of the GNU Library General Public
6 * License as published by the Free Software Foundation; either 6 * License as published by the Free Software Foundation; either
7 * version 2 of the License, or (at your option) any later version. 7 * version 2 of the License, or (at your option) any later version.
8 * 8 *
9 * This library is distributed in the hope that it will be useful, 9 * This library is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of 10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
(...skipping 17 matching lines...) Expand all
28 #include "core/svg/SVGAnimatedNumberList.h" 28 #include "core/svg/SVGAnimatedNumberList.h"
29 #include "core/svg/SVGAnimatedNumberOptionalNumber.h" 29 #include "core/svg/SVGAnimatedNumberOptionalNumber.h"
30 #include "core/svg/SVGFilterPrimitiveStandardAttributes.h" 30 #include "core/svg/SVGFilterPrimitiveStandardAttributes.h"
31 #include "platform/graphics/filters/FEConvolveMatrix.h" 31 #include "platform/graphics/filters/FEConvolveMatrix.h"
32 32
33 namespace blink { 33 namespace blink {
34 34
35 template<> const SVGEnumerationStringEntries& getStaticStringEntries<EdgeModeTyp e>(); 35 template<> const SVGEnumerationStringEntries& getStaticStringEntries<EdgeModeTyp e>();
36 36
37 class SVGFEConvolveMatrixElement FINAL : public SVGFilterPrimitiveStandardAttrib utes { 37 class SVGFEConvolveMatrixElement FINAL : public SVGFilterPrimitiveStandardAttrib utes {
38 DEFINE_WRAPPERTYPEINFO();
38 public: 39 public:
39 DECLARE_NODE_FACTORY(SVGFEConvolveMatrixElement); 40 DECLARE_NODE_FACTORY(SVGFEConvolveMatrixElement);
40 41
41 SVGAnimatedBoolean* preserveAlpha() { return m_preserveAlpha.get(); } 42 SVGAnimatedBoolean* preserveAlpha() { return m_preserveAlpha.get(); }
42 SVGAnimatedNumber* divisor() { return m_divisor.get(); } 43 SVGAnimatedNumber* divisor() { return m_divisor.get(); }
43 SVGAnimatedNumber* bias() { return m_bias.get(); } 44 SVGAnimatedNumber* bias() { return m_bias.get(); }
44 SVGAnimatedNumber* kernelUnitLengthX() { return m_kernelUnitLength->firstNum ber(); } 45 SVGAnimatedNumber* kernelUnitLengthX() { return m_kernelUnitLength->firstNum ber(); }
45 SVGAnimatedNumber* kernelUnitLengthY() { return m_kernelUnitLength->secondNu mber(); } 46 SVGAnimatedNumber* kernelUnitLengthY() { return m_kernelUnitLength->secondNu mber(); }
46 SVGAnimatedNumberList* kernelMatrix() { return m_kernelMatrix.get(); } 47 SVGAnimatedNumberList* kernelMatrix() { return m_kernelMatrix.get(); }
47 SVGAnimatedString* in1() { return m_in1.get(); } 48 SVGAnimatedString* in1() { return m_in1.get(); }
(...skipping 19 matching lines...) Expand all
67 RefPtr<SVGAnimatedNumberList> m_kernelMatrix; 68 RefPtr<SVGAnimatedNumberList> m_kernelMatrix;
68 RefPtr<SVGAnimatedNumberOptionalNumber> m_kernelUnitLength; 69 RefPtr<SVGAnimatedNumberOptionalNumber> m_kernelUnitLength;
69 RefPtr<SVGAnimatedIntegerOptionalInteger> m_order; 70 RefPtr<SVGAnimatedIntegerOptionalInteger> m_order;
70 RefPtr<SVGAnimatedBoolean> m_preserveAlpha; 71 RefPtr<SVGAnimatedBoolean> m_preserveAlpha;
71 RefPtr<SVGAnimatedInteger> m_targetX; 72 RefPtr<SVGAnimatedInteger> m_targetX;
72 RefPtr<SVGAnimatedInteger> m_targetY; 73 RefPtr<SVGAnimatedInteger> m_targetY;
73 }; 74 };
74 75
75 } // namespace blink 76 } // namespace blink
76 77
77 #endif 78 #endif // SVGFEConvolveMatrixElement_h
OLDNEW
« no previous file with comments | « Source/core/svg/SVGFECompositeElement.h ('k') | Source/core/svg/SVGFEDiffuseLightingElement.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698