Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(219)

Unified Diff: third_party/WebKit/Source/core/paint/SVGInlineTextBoxPainter.cpp

Issue 2789373003: Rename DocumentMarker::activeMatch() to IsActiveMatch() (Closed)
Patch Set: Remove dependency Created 3 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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;
« no previous file with comments | « third_party/WebKit/Source/core/paint/InlineTextBoxPainter.cpp ('k') | third_party/WebKit/Source/core/testing/Internals.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698