#include "third_party/blink/renderer/core/editing/markers/active_suggestion_marker_list_impl.h"
#include "third_party/blink/renderer/core/editing/markers/sorted_document_marker_list_editor.h"
namespace blink {
DocumentMarker::MarkerType ActiveSuggestionMarkerListImpl::MarkerType() const { … }
bool ActiveSuggestionMarkerListImpl::IsEmpty() const { … }
void ActiveSuggestionMarkerListImpl::Add(DocumentMarker* marker) { … }
void ActiveSuggestionMarkerListImpl::Clear() { … }
const HeapVector<Member<DocumentMarker>>&
ActiveSuggestionMarkerListImpl::GetMarkers() const { … }
DocumentMarker* ActiveSuggestionMarkerListImpl::FirstMarkerIntersectingRange(
unsigned start_offset,
unsigned end_offset) const { … }
HeapVector<Member<DocumentMarker>>
ActiveSuggestionMarkerListImpl::MarkersIntersectingRange(
unsigned start_offset,
unsigned end_offset) const { … }
bool ActiveSuggestionMarkerListImpl::MoveMarkers(
int length,
DocumentMarkerList* dst_markers_) { … }
bool ActiveSuggestionMarkerListImpl::RemoveMarkers(unsigned start_offset,
int length) { … }
bool ActiveSuggestionMarkerListImpl::ShiftMarkers(const String&,
unsigned offset,
unsigned old_length,
unsigned new_length) { … }
void ActiveSuggestionMarkerListImpl::Trace(Visitor* visitor) const { … }
}