| Index: third_party/WebKit/Source/core/editing/markers/ActiveSuggestionMarkerListImpl.cpp
|
| diff --git a/third_party/WebKit/Source/core/editing/markers/ActiveSuggestionMarkerListImpl.cpp b/third_party/WebKit/Source/core/editing/markers/ActiveSuggestionMarkerListImpl.cpp
|
| index 678d4c8f59c517a3c3249380414e45da0dcc879a..0cc267c8cd2e3624f0346bf090fa41d1678ebdb6 100644
|
| --- a/third_party/WebKit/Source/core/editing/markers/ActiveSuggestionMarkerListImpl.cpp
|
| +++ b/third_party/WebKit/Source/core/editing/markers/ActiveSuggestionMarkerListImpl.cpp
|
| @@ -30,6 +30,13 @@ ActiveSuggestionMarkerListImpl::GetMarkers() const {
|
| return markers_;
|
| }
|
|
|
| +DocumentMarker* ActiveSuggestionMarkerListImpl::FirstMarkerIntersectingRange(
|
| + unsigned start_offset,
|
| + unsigned end_offset) const {
|
| + return DocumentMarkerListEditor::FirstMarkerIntersectingRange(
|
| + markers_, start_offset, end_offset);
|
| +}
|
| +
|
| HeapVector<Member<DocumentMarker>>
|
| ActiveSuggestionMarkerListImpl::MarkersIntersectingRange(
|
| unsigned start_offset,
|
|
|