| 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 600eeedca402ca85cf3c059281d0b642600a3989..678d4c8f59c517a3c3249380414e45da0dcc879a 100644
|
| --- a/third_party/WebKit/Source/core/editing/markers/ActiveSuggestionMarkerListImpl.cpp
|
| +++ b/third_party/WebKit/Source/core/editing/markers/ActiveSuggestionMarkerListImpl.cpp
|
| @@ -30,6 +30,14 @@ ActiveSuggestionMarkerListImpl::GetMarkers() const {
|
| return markers_;
|
| }
|
|
|
| +HeapVector<Member<DocumentMarker>>
|
| +ActiveSuggestionMarkerListImpl::MarkersIntersectingRange(
|
| + unsigned start_offset,
|
| + unsigned end_offset) const {
|
| + return DocumentMarkerListEditor::MarkersIntersectingRange(
|
| + markers_, start_offset, end_offset);
|
| +}
|
| +
|
| bool ActiveSuggestionMarkerListImpl::MoveMarkers(
|
| int length,
|
| DocumentMarkerList* dst_markers_) {
|
|
|