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

Unified Diff: third_party/WebKit/Source/core/svg/SVGTransformTearOff.h

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/SVGTransformTearOff.h
diff --git a/third_party/WebKit/Source/core/svg/SVGTransformTearOff.h b/third_party/WebKit/Source/core/svg/SVGTransformTearOff.h
index 185a526910334b1dfa86292a21b7f6900845f41a..73f1f19f68ddafda549783cb6d98774e5024c6d6 100644
--- a/third_party/WebKit/Source/core/svg/SVGTransformTearOff.h
+++ b/third_party/WebKit/Source/core/svg/SVGTransformTearOff.h
@@ -32,13 +32,14 @@
#define SVGTransformTearOff_h
#include "bindings/core/v8/ScriptWrappable.h"
-#include "core/svg/SVGMatrixTearOff.h"
#include "core/svg/SVGTransform.h"
#include "core/svg/properties/SVGPropertyTearOff.h"
#include "platform/heap/Handle.h"
namespace blink {
+class SVGMatrixTearOff;
+
class SVGTransformTearOff final : public SVGPropertyTearOff<SVGTransform>, public ScriptWrappable {
DEFINE_WRAPPERTYPEINFO();
public:
@@ -56,6 +57,7 @@ public:
{
return new SVGTransformTearOff(target, contextElement, propertyIsAnimVal, attributeName);
}
+ static SVGTransformTearOff* create(SVGMatrixTearOff*);
~SVGTransformTearOff() override;

Powered by Google App Engine
This is Rietveld 408576698