| 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 1bf76df50444fb9bd314cb406330dcf9465ed2a2..8293e39dbd551407d1907f7ee53c0025c6627134 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_;
|
| }
|
|
|
| +HeapVector<Member<DocumentMarker>>
|
| +TextMatchMarkerListImpl::MarkersIntersectingRange(unsigned start_offset,
|
| + unsigned end_offset) const {
|
| + return DocumentMarkerListEditor::MarkersIntersectingRange(
|
| + markers_, start_offset, end_offset);
|
| +}
|
| +
|
| bool TextMatchMarkerListImpl::MoveMarkers(int length,
|
| DocumentMarkerList* dst_list) {
|
| return DocumentMarkerListEditor::MoveMarkers(&markers_, length, dst_list);
|
|
|