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