Index: Source/core/svg/SVGViewSpec.cpp |
diff --git a/Source/core/svg/SVGViewSpec.cpp b/Source/core/svg/SVGViewSpec.cpp |
index b63ed5007982ccd1a76024964447f5b057754a84..7d1e60c986bb2a96e575e144fb85729e0bf22667 100644 |
--- a/Source/core/svg/SVGViewSpec.cpp |
+++ b/Source/core/svg/SVGViewSpec.cpp |
@@ -27,7 +27,6 @@ |
#include "core/svg/SVGFitToViewBox.h" |
#include "core/svg/SVGParserUtilities.h" |
#include "core/svg/SVGSVGElement.h" |
-#include "core/svg/SVGTransformable.h" |
namespace WebCore { |
@@ -272,7 +271,7 @@ bool SVGViewSpec::parseViewSpecInternal(const CharType* ptr, const CharType* end |
if (ptr >= end || *ptr != '(') |
return false; |
ptr++; |
- SVGTransformable::parseTransformAttribute(m_transform, ptr, end, SVGTransformable::DoNotClearList); |
+ parseTransformAttribute(m_transform, ptr, end, DoNotClearList); |
if (ptr >= end || *ptr != ')') |
return false; |
ptr++; |