| Index: Source/core/svg/SVGSVGElement.cpp
|
| diff --git a/Source/core/svg/SVGSVGElement.cpp b/Source/core/svg/SVGSVGElement.cpp
|
| index 0d4005572d50d263725c27aa3227d3e2d4510f44..15ddd09c556171304b29092a3e834cb350a98c86 100644
|
| --- a/Source/core/svg/SVGSVGElement.cpp
|
| +++ b/Source/core/svg/SVGSVGElement.cpp
|
| @@ -424,7 +424,7 @@ SVGTransform SVGSVGElement::createSVGTransformFromMatrix(const SVGMatrix& matrix
|
| return SVGTransform(static_cast<const AffineTransform&>(matrix));
|
| }
|
|
|
| -AffineTransform SVGSVGElement::localCoordinateSpaceTransform(SVGLocatable::CTMScope mode) const
|
| +AffineTransform SVGSVGElement::localCoordinateSpaceTransform(SVGElement::CTMScope mode) const
|
| {
|
| AffineTransform viewBoxTransform;
|
| if (!hasEmptyViewBox()) {
|
| @@ -436,7 +436,7 @@ AffineTransform SVGSVGElement::localCoordinateSpaceTransform(SVGLocatable::CTMSc
|
| if (!isOutermostSVGSVGElement()) {
|
| SVGLengthContext lengthContext(this);
|
| transform.translate(xCurrentValue().value(lengthContext), yCurrentValue().value(lengthContext));
|
| - } else if (mode == SVGLocatable::ScreenScope) {
|
| + } else if (mode == SVGElement::ScreenScope) {
|
| if (RenderObject* renderer = this->renderer()) {
|
| FloatPoint location;
|
| float zoomFactor = 1;
|
| @@ -729,7 +729,7 @@ void SVGSVGElement::setupInitialView(const String& fragmentIdentifier, Element*
|
| if (!viewElement)
|
| return;
|
|
|
| - SVGElement* element = SVGLocatable::nearestViewportElement(viewElement);
|
| + SVGElement* element = nearestViewportElement(viewElement);
|
| if (element->hasTagName(SVGNames::svgTag)) {
|
| SVGSVGElement* svg = toSVGSVGElement(element);
|
| svg->inheritViewAttributes(viewElement);
|
|
|