| Index: third_party/WebKit/Source/core/paint/SVGContainerPainter.cpp
|
| diff --git a/third_party/WebKit/Source/core/paint/SVGContainerPainter.cpp b/third_party/WebKit/Source/core/paint/SVGContainerPainter.cpp
|
| index 6ff1ca7467bda3594dc8ee1128d4dceaedfe5117..34b3c9af8a2c26d179872fc36b5ce2830c0e0307 100644
|
| --- a/third_party/WebKit/Source/core/paint/SVGContainerPainter.cpp
|
| +++ b/third_party/WebKit/Source/core/paint/SVGContainerPainter.cpp
|
| @@ -11,7 +11,6 @@
|
| #include "core/paint/ObjectPainter.h"
|
| #include "core/paint/PaintInfo.h"
|
| #include "core/paint/SVGPaintContext.h"
|
| -#include "core/paint/TransformRecorder.h"
|
| #include "core/svg/SVGSVGElement.h"
|
| #include "wtf/Optional.h"
|
|
|
| @@ -36,7 +35,7 @@ void SVGContainerPainter::paint(const PaintInfo& paintInfo)
|
|
|
| PaintInfo paintInfoBeforeFiltering(paintInfo);
|
| paintInfoBeforeFiltering.updateCullRect(m_layoutSVGContainer.localToSVGParentTransform());
|
| - TransformRecorder transformRecorder(paintInfoBeforeFiltering.context, m_layoutSVGContainer, m_layoutSVGContainer.localToSVGParentTransform());
|
| + SVGTransformContext transformContext(paintInfoBeforeFiltering.context, m_layoutSVGContainer, m_layoutSVGContainer.localToSVGParentTransform());
|
| {
|
| Optional<FloatClipRecorder> clipRecorder;
|
| if (m_layoutSVGContainer.isSVGViewportContainer() && SVGLayoutSupport::isOverflowHidden(&m_layoutSVGContainer)) {
|
|
|