Chromium Code Reviews| Index: Source/core/rendering/svg/SVGInlineTextBox.cpp |
| diff --git a/Source/core/rendering/svg/SVGInlineTextBox.cpp b/Source/core/rendering/svg/SVGInlineTextBox.cpp |
| index f8e6350717b59862a14fa0831c83d64691201d0a..4bfddf493f213576d3120471edb216c2340b9e3b 100644 |
| --- a/Source/core/rendering/svg/SVGInlineTextBox.cpp |
| +++ b/Source/core/rendering/svg/SVGInlineTextBox.cpp |
| @@ -28,6 +28,7 @@ |
| #include "core/frame/FrameView.h" |
| #include "core/frame/LocalFrame.h" |
| #include "core/paint/InlinePainter.h" |
| +#include "core/paint/InlineTextBoxPainter.h" |
| #include "core/rendering/HitTestResult.h" |
| #include "core/rendering/InlineFlowBox.h" |
| #include "core/rendering/PaintInfo.h" |
| @@ -263,7 +264,7 @@ void SVGInlineTextBox::paint(PaintInfo& paintInfo, const LayoutPoint& paintOffse |
| RenderStyle* style = parentRenderer.style(); |
| ASSERT(style); |
| - paintDocumentMarkers(paintInfo.context, paintOffset, style, textRenderer.scaledFont(), true); |
| + InlineTextBoxPainter(*this).paintDocumentMarkers(paintInfo.context, paintOffset, style, textRenderer.scaledFont(), true); |
|
jbroman
2014/10/03 17:46:17
Safe to assume there will eventually be an SVGInli
chrishtr
2014/10/03 18:10:37
Yes. Working on that CL in parallel with this revi
|
| const SVGRenderStyle& svgStyle = style->svgStyle(); |