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

Unified Diff: Source/core/svg/SVGComponentTransferFunctionElement.cpp

Issue 19097005: Remove one SVG animated type special case from the bindings generator (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Fix the regressions Created 7 years, 5 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
Index: Source/core/svg/SVGComponentTransferFunctionElement.cpp
diff --git a/Source/core/svg/SVGComponentTransferFunctionElement.cpp b/Source/core/svg/SVGComponentTransferFunctionElement.cpp
index 996a1718d70f08727a2e416892703de87ccc0007..ccd06767d5e93906f12ce73ef95c337385f64d66 100644
--- a/Source/core/svg/SVGComponentTransferFunctionElement.cpp
+++ b/Source/core/svg/SVGComponentTransferFunctionElement.cpp
@@ -140,13 +140,13 @@ void SVGComponentTransferFunctionElement::svgAttributeChanged(const QualifiedNam
ComponentTransferFunction SVGComponentTransferFunctionElement::transferFunction() const
{
ComponentTransferFunction func;
- func.type = type();
- func.slope = slope();
- func.intercept = intercept();
- func.amplitude = amplitude();
- func.exponent = exponent();
- func.offset = offset();
- func.tableValues = tableValues();
+ func.type = typeCurrentValue();
+ func.slope = slopeCurrentValue();
+ func.intercept = interceptCurrentValue();
+ func.amplitude = amplitudeCurrentValue();
+ func.exponent = exponentCurrentValue();
+ func.offset = offsetCurrentValue();
+ func.tableValues = tableValuesCurrentValue();
return func;
}

Powered by Google App Engine
This is Rietveld 408576698