| Index: third_party/WebKit/Source/core/editing/markers/TextMatchMarkerListImpl.cpp
|
| diff --git a/third_party/WebKit/Source/core/editing/markers/TextMatchMarkerListImpl.cpp b/third_party/WebKit/Source/core/editing/markers/TextMatchMarkerListImpl.cpp
|
| index 8293e39dbd551407d1907f7ee53c0025c6627134..4adeb5f16f7c64383e71548a54418c46b2d622c1 100644
|
| --- a/third_party/WebKit/Source/core/editing/markers/TextMatchMarkerListImpl.cpp
|
| +++ b/third_party/WebKit/Source/core/editing/markers/TextMatchMarkerListImpl.cpp
|
| @@ -35,6 +35,13 @@ const HeapVector<Member<DocumentMarker>>& TextMatchMarkerListImpl::GetMarkers()
|
| return markers_;
|
| }
|
|
|
| +DocumentMarker* TextMatchMarkerListImpl::FirstMarkerIntersectingRange(
|
| + unsigned start_offset,
|
| + unsigned end_offset) const {
|
| + return DocumentMarkerListEditor::FirstMarkerIntersectingRange(
|
| + markers_, start_offset, end_offset);
|
| +}
|
| +
|
| HeapVector<Member<DocumentMarker>>
|
| TextMatchMarkerListImpl::MarkersIntersectingRange(unsigned start_offset,
|
| unsigned end_offset) const {
|
|
|