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