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

Unified Diff: Source/bindings/scripts/deprecated_code_generator_v8.pm

Issue 19386002: Get rid of special casing for SVGTransform.matrix from the bindings generator (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: 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 | « no previous file | Source/core/svg/SVGTransform.h » ('j') | Source/core/svg/SVGTransform.cpp » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/bindings/scripts/deprecated_code_generator_v8.pm
diff --git a/Source/bindings/scripts/deprecated_code_generator_v8.pm b/Source/bindings/scripts/deprecated_code_generator_v8.pm
index c2aaa5667577f38d55310e70b51a383eeb9860ec..e4805f223dc53185556a90e5eae062c61a995c20 100644
--- a/Source/bindings/scripts/deprecated_code_generator_v8.pm
+++ b/Source/bindings/scripts/deprecated_code_generator_v8.pm
@@ -1578,12 +1578,6 @@ END
AddToImplIncludes("core/svg/properties/SVGStaticPropertyWithParentTearOff.h");
$tearOffType =~ s/SVGPropertyTearOff</SVGStaticPropertyWithParentTearOff<$implClassName, /;
- if ($expression =~ /matrix/ and $interfaceName eq "SVGTransform") {
- # SVGTransform offers a matrix() method for internal usage that returns an AffineTransform
- # and a svgMatrix() method returning a SVGMatrix, used for the bindings.
- $expression =~ s/matrix/svgMatrix/;
- }
-
$wrappedValue = "WTF::getPtr(${tearOffType}::create(wrapper, $expression, $updateMethod))";
} else {
AddToImplIncludes("core/svg/properties/SVGStaticPropertyTearOff.h");
« no previous file with comments | « no previous file | Source/core/svg/SVGTransform.h » ('j') | Source/core/svg/SVGTransform.cpp » ('J')

Powered by Google App Engine
This is Rietveld 408576698