| Index: third_party/WebKit/Source/core/paint/SVGForeignObjectPainter.cpp
|
| diff --git a/third_party/WebKit/Source/core/paint/SVGForeignObjectPainter.cpp b/third_party/WebKit/Source/core/paint/SVGForeignObjectPainter.cpp
|
| index a051b194721f13a28cd41a42933bd1e6031958e3..f7f61ea6f421b2fce1b9ab79dc40176a6c008f67 100644
|
| --- a/third_party/WebKit/Source/core/paint/SVGForeignObjectPainter.cpp
|
| +++ b/third_party/WebKit/Source/core/paint/SVGForeignObjectPainter.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 "wtf/Optional.h"
|
|
|
| namespace blink {
|
| @@ -42,7 +41,7 @@ void SVGForeignObjectPainter::paint(const PaintInfo& paintInfo)
|
|
|
| PaintInfo paintInfoBeforeFiltering(paintInfo);
|
| paintInfoBeforeFiltering.updateCullRect(m_layoutSVGForeignObject.localSVGTransform());
|
| - TransformRecorder transformRecorder(paintInfoBeforeFiltering.context, m_layoutSVGForeignObject, m_layoutSVGForeignObject.localSVGTransform());
|
| + SVGTransformContext transformContext(paintInfoBeforeFiltering.context, m_layoutSVGForeignObject, m_layoutSVGForeignObject.localSVGTransform());
|
|
|
| Optional<FloatClipRecorder> clipRecorder;
|
| if (SVGLayoutSupport::isOverflowHidden(&m_layoutSVGForeignObject))
|
|
|