| Index: third_party/WebKit/Source/core/editing/markers/EditingMarkerList.h
|
| diff --git a/third_party/WebKit/Source/core/editing/markers/EditingMarkerList.h b/third_party/WebKit/Source/core/editing/markers/EditingMarkerList.h
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..4c51f4eb0f9a5ab433e29a1a5bf1211aca159da6
|
| --- /dev/null
|
| +++ b/third_party/WebKit/Source/core/editing/markers/EditingMarkerList.h
|
| @@ -0,0 +1,57 @@
|
| +// Copyright 2017 The Chromium Authors. All rights reserved.
|
| +// Use of this source code is governed by a BSD-style license that can be
|
| +// found in the LICENSE file.
|
| +
|
| +#ifndef EditingMarkerList_h
|
| +#define EditingMarkerList_h
|
| +
|
| +#include "core/editing/markers/DocumentMarkerList.h"
|
| +
|
| +namespace blink {
|
| +
|
| +class DocumentMarker;
|
| +
|
| +class EditingMarkerList : public DocumentMarkerList {
|
| + WTF_MAKE_NONCOPYABLE(EditingMarkerList);
|
| +
|
| + public:
|
| + explicit EditingMarkerList(DocumentMarkerController*);
|
| +
|
| + // DocumentMarkerList implementations
|
| + size_t size() const final;
|
| + bool empty() const final;
|
| + DocumentMarker* at(size_t index) final;
|
| +
|
| + void clear() final;
|
| +
|
| + iterator begin() final;
|
| + iterator end() final;
|
| + const_iterator begin() const final;
|
| + const_iterator end() const final;
|
| +
|
| + void appendMarkersToInputList(DocumentMarkerVector* list) const final;
|
| + bool copyMarkers(unsigned startOffset,
|
| + int length,
|
| + Node* dstNode,
|
| + int delta) const final;
|
| + void removeMarkers(unsigned startOffset,
|
| + int length,
|
| + bool shouldRemovePartiallyOverlappingMarkers,
|
| + bool* didRemoveMarker) final;
|
| + bool shiftMarkers(int startOffset, int delta) final;
|
| +
|
| + // EditingMarkerList-specific
|
| + virtual void insert(DocumentMarker*);
|
| +
|
| + DECLARE_VIRTUAL_TRACE();
|
| +
|
| + protected:
|
| + void sortMarkerList();
|
| +
|
| + bool m_markersAreSorted;
|
| + HeapVector<Member<DocumentMarker>> m_markers;
|
| +};
|
| +
|
| +} // namespace blink
|
| +
|
| +#endif // EditingMarkerList_h
|
|
|