| Index: third_party/WebKit/Source/core/paint/SVGTextPainter.cpp
|
| diff --git a/third_party/WebKit/Source/core/paint/SVGTextPainter.cpp b/third_party/WebKit/Source/core/paint/SVGTextPainter.cpp
|
| index acbb6b798b72015574d2767bcca3f3a5a59ec5eb..e4233ef91c35880ad3d1b7fd1e46967031aa144d 100644
|
| --- a/third_party/WebKit/Source/core/paint/SVGTextPainter.cpp
|
| +++ b/third_party/WebKit/Source/core/paint/SVGTextPainter.cpp
|
| @@ -7,7 +7,7 @@
|
| #include "core/layout/svg/LayoutSVGText.h"
|
| #include "core/paint/BlockPainter.h"
|
| #include "core/paint/PaintInfo.h"
|
| -#include "core/paint/TransformRecorder.h"
|
| +#include "core/paint/SVGPaintContext.h"
|
|
|
| namespace blink {
|
|
|
| @@ -18,7 +18,7 @@ void SVGTextPainter::paint(const PaintInfo& paintInfo)
|
|
|
| PaintInfo blockInfo(paintInfo);
|
| blockInfo.updateCullRect(m_layoutSVGText.localToSVGParentTransform());
|
| - TransformRecorder transformRecorder(blockInfo.context, m_layoutSVGText, m_layoutSVGText.localToSVGParentTransform());
|
| + SVGTransformContext transformContext(blockInfo.context, m_layoutSVGText, m_layoutSVGText.localToSVGParentTransform());
|
|
|
| BlockPainter(m_layoutSVGText).paint(blockInfo, LayoutPoint());
|
|
|
|
|