| Index: third_party/WebKit/Source/core/testing/Internals.cpp
|
| diff --git a/third_party/WebKit/Source/core/testing/Internals.cpp b/third_party/WebKit/Source/core/testing/Internals.cpp
|
| index b77eb4b0b06a1fc88f93cce1595facfdb2a0d1df..29cddf967555d612c0707c618ee9c00cfd8db2d9 100644
|
| --- a/third_party/WebKit/Source/core/testing/Internals.cpp
|
| +++ b/third_party/WebKit/Source/core/testing/Internals.cpp
|
| @@ -1070,13 +1070,13 @@ void Internals::addCompositionMarker(const Range* range,
|
| }
|
| }
|
|
|
| -void Internals::setMarkersActive(Node* node,
|
| - unsigned start_offset,
|
| - unsigned end_offset,
|
| - bool active) {
|
| +void Internals::setTextMatchMarkersActive(Node* node,
|
| + unsigned start_offset,
|
| + unsigned end_offset,
|
| + bool active) {
|
| DCHECK(node);
|
| - node->GetDocument().Markers().SetMarkersActive(node, start_offset, end_offset,
|
| - active);
|
| + node->GetDocument().Markers().SetTextMatchMarkersActive(node, start_offset,
|
| + end_offset, active);
|
| }
|
|
|
| void Internals::setMarkedTextMatchesAreHighlighted(Document* document,
|
|
|