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

Unified Diff: third_party/WebKit/Source/core/svg/SVGTransformListTearOff.cpp

Issue 2360083002: Remove SVGSVGElement dependency from SVGTransformListTearOff (Closed)
Patch Set: Created 4 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 side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/Source/core/svg/SVGTransformListTearOff.cpp
diff --git a/third_party/WebKit/Source/core/svg/SVGTransformListTearOff.cpp b/third_party/WebKit/Source/core/svg/SVGTransformListTearOff.cpp
index 01405c27035c1f9755a03c28c2f335145440dbc1..5e279f3745118d54d9206b7927181ce78c970d08 100644
--- a/third_party/WebKit/Source/core/svg/SVGTransformListTearOff.cpp
+++ b/third_party/WebKit/Source/core/svg/SVGTransformListTearOff.cpp
@@ -30,7 +30,7 @@
#include "core/svg/SVGTransformListTearOff.h"
-#include "core/svg/SVGSVGElement.h"
+#include "core/svg/SVGTransformTearOff.h"
namespace blink {
@@ -45,7 +45,7 @@ SVGTransformListTearOff::~SVGTransformListTearOff()
SVGTransformTearOff* SVGTransformListTearOff::createSVGTransformFromMatrix(SVGMatrixTearOff* matrix) const
{
- return SVGSVGElement::createSVGTransformFromMatrix(matrix);
+ return SVGTransformTearOff::create(matrix);
}
SVGTransformTearOff* SVGTransformListTearOff::consolidate(ExceptionState& exceptionState)
« no previous file with comments | « third_party/WebKit/Source/core/svg/SVGTransformListTearOff.h ('k') | third_party/WebKit/Source/core/svg/SVGTransformTearOff.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698