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

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

Issue 19263002: Get rid of special casing for SVGNumber in the bindings generator (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Fix style issues 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
« no previous file with comments | « Source/core/svg/SVGAnimatedNumberList.cpp ('k') | Source/core/svg/SVGFEColorMatrixElement.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/svg/SVGComponentTransferFunctionElement.cpp
diff --git a/Source/core/svg/SVGComponentTransferFunctionElement.cpp b/Source/core/svg/SVGComponentTransferFunctionElement.cpp
index ccd06767d5e93906f12ce73ef95c337385f64d66..d4449e2c89407ddb7b8284103344abb78f58283f 100644
--- a/Source/core/svg/SVGComponentTransferFunctionElement.cpp
+++ b/Source/core/svg/SVGComponentTransferFunctionElement.cpp
@@ -146,7 +146,7 @@ ComponentTransferFunction SVGComponentTransferFunctionElement::transferFunction(
func.amplitude = amplitudeCurrentValue();
func.exponent = exponentCurrentValue();
func.offset = offsetCurrentValue();
- func.tableValues = tableValuesCurrentValue();
+ func.tableValues = tableValuesCurrentValue().toFloatVector();
return func;
}
« no previous file with comments | « Source/core/svg/SVGAnimatedNumberList.cpp ('k') | Source/core/svg/SVGFEColorMatrixElement.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698