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

Unified Diff: Source/core/svg/SVGFEConvolveMatrixElement.h

Issue 148173018: [SVG] SVGAnimatedString{,List} migration to new SVG property impl. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: remove debug print Created 6 years, 11 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « Source/core/svg/SVGFECompositeElement.cpp ('k') | Source/core/svg/SVGFEConvolveMatrixElement.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/svg/SVGFEConvolveMatrixElement.h
diff --git a/Source/core/svg/SVGFEConvolveMatrixElement.h b/Source/core/svg/SVGFEConvolveMatrixElement.h
index a1efbbc69492bd8b4ed8f7df9c6183c7b246dd5f..03345293154414879fc093e2087203b53b8d63a4 100644
--- a/Source/core/svg/SVGFEConvolveMatrixElement.h
+++ b/Source/core/svg/SVGFEConvolveMatrixElement.h
@@ -77,6 +77,7 @@ public:
SVGAnimatedNumber* kernelUnitLengthX() { return m_kernelUnitLength->firstNumber(); }
SVGAnimatedNumber* kernelUnitLengthY() { return m_kernelUnitLength->secondNumber(); }
SVGAnimatedNumberList* kernelMatrix() { return m_kernelMatrix.get(); }
+ SVGAnimatedString* in1() { return m_in1.get(); }
private:
explicit SVGFEConvolveMatrixElement(Document&);
@@ -95,8 +96,8 @@ private:
RefPtr<SVGAnimatedNumber> m_bias;
RefPtr<SVGAnimatedNumberOptionalNumber> m_kernelUnitLength;
RefPtr<SVGAnimatedNumberList> m_kernelMatrix;
+ RefPtr<SVGAnimatedString> m_in1;
BEGIN_DECLARE_ANIMATED_PROPERTIES(SVGFEConvolveMatrixElement)
- DECLARE_ANIMATED_STRING(In1, in1)
DECLARE_ANIMATED_INTEGER(OrderX, orderX)
DECLARE_ANIMATED_INTEGER(OrderY, orderY)
DECLARE_ANIMATED_INTEGER(TargetX, targetX)
« no previous file with comments | « Source/core/svg/SVGFECompositeElement.cpp ('k') | Source/core/svg/SVGFEConvolveMatrixElement.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698