| Index: third_party/WebKit/Source/core/paint/SVGInlineTextBoxPainter.cpp
|
| diff --git a/third_party/WebKit/Source/core/paint/SVGInlineTextBoxPainter.cpp b/third_party/WebKit/Source/core/paint/SVGInlineTextBoxPainter.cpp
|
| index 56e5a794c030a752a0bc07c3157aeeb80d4cc160..9d51237a2d4e5f61d21b5826591c91bdeb5abf40 100644
|
| --- a/third_party/WebKit/Source/core/paint/SVGInlineTextBoxPainter.cpp
|
| +++ b/third_party/WebKit/Source/core/paint/SVGInlineTextBoxPainter.cpp
|
| @@ -599,7 +599,7 @@ void SVGInlineTextBoxPainter::paintTextMatchMarkerForeground(
|
| return;
|
|
|
| Color textColor =
|
| - LayoutTheme::theme().platformTextSearchColor(marker.activeMatch());
|
| + LayoutTheme::theme().platformTextSearchColor(marker.IsActiveMatch());
|
|
|
| PaintFlags fillFlags;
|
| fillFlags.setColor(textColor.rgb());
|
| @@ -641,7 +641,7 @@ void SVGInlineTextBoxPainter::paintTextMatchMarkerBackground(
|
| return;
|
|
|
| Color color = LayoutTheme::theme().platformTextSearchHighlightColor(
|
| - marker.activeMatch());
|
| + marker.IsActiveMatch());
|
| for (const SVGTextFragmentWithRange& textMatchInfo : textMatchInfoList) {
|
| const SVGTextFragment& fragment = textMatchInfo.fragment;
|
|
|
|
|