Index: third_party/WebKit/Source/core/layout/svg/line/SVGInlineTextBox.cpp |
diff --git a/third_party/WebKit/Source/core/layout/svg/line/SVGInlineTextBox.cpp b/third_party/WebKit/Source/core/layout/svg/line/SVGInlineTextBox.cpp |
index 785605152f656bc3280755def0e6bcbcd458357f..2f9ecbfcf35a85edc3afa83591b23bd5124c5916 100644 |
--- a/third_party/WebKit/Source/core/layout/svg/line/SVGInlineTextBox.cpp |
+++ b/third_party/WebKit/Source/core/layout/svg/line/SVGInlineTextBox.cpp |
@@ -220,9 +220,14 @@ void SVGInlineTextBox::paintDocumentMarker(GraphicsContext&, const LayoutPoint&, |
// SVG does not have support for generic document markers (e.g., spellchecking, etc). |
} |
-void SVGInlineTextBox::paintTextMatchMarker(GraphicsContext& context, const LayoutPoint& point, DocumentMarker* marker, const ComputedStyle& style, const Font& font) const |
+void SVGInlineTextBox::paintTextMatchMarkerForeground(const PaintInfo& paintInfo, const LayoutPoint& point, DocumentMarker* marker, const ComputedStyle& style, const Font& font) const |
{ |
- SVGInlineTextBoxPainter(*this).paintTextMatchMarker(context, point, marker, style, font); |
+ SVGInlineTextBoxPainter(*this).paintTextMatchMarkerForeground(paintInfo, point, marker, style, font); |
+} |
+ |
+void SVGInlineTextBox::paintTextMatchMarkerBackground(const PaintInfo& paintInfo, const LayoutPoint& point, DocumentMarker* marker, const ComputedStyle& style, const Font& font) const |
+{ |
+ SVGInlineTextBoxPainter(*this).paintTextMatchMarkerBackground(paintInfo, point, marker, style, font); |
} |
LayoutRect SVGInlineTextBox::calculateBoundaries() const |