Index: third_party/WebKit/Source/core/editing/markers/DocumentMarkerController.h |
diff --git a/third_party/WebKit/Source/core/editing/markers/DocumentMarkerController.h b/third_party/WebKit/Source/core/editing/markers/DocumentMarkerController.h |
index 8d2c9b5f29f1ed274dd98c526805ea01614bd503..06ca1fd2b07349e9d84343416ad38141d9621705 100644 |
--- a/third_party/WebKit/Source/core/editing/markers/DocumentMarkerController.h |
+++ b/third_party/WebKit/Source/core/editing/markers/DocumentMarkerController.h |
@@ -53,25 +53,6 @@ class MarkerRemoverPredicate final { |
Vector<String> words_; |
}; |
-class DocumentMarkerListEditor { |
- public: |
- using MarkerList = HeapVector<Member<RenderedDocumentMarker>>; |
- |
- static void AddMarker(MarkerList*, const DocumentMarker*); |
- |
- // Returns true if a marker was removed, false otherwise. |
- static bool RemoveMarkers(MarkerList*, unsigned start_offset, int length); |
- |
- // Returns true if a marker was shifted or removed, false otherwise. |
- static bool ShiftMarkers(MarkerList*, |
- unsigned offset, |
- unsigned old_length, |
- unsigned new_length); |
- |
- private: |
- static void MergeOverlapping(MarkerList*, RenderedDocumentMarker* to_insert); |
-}; |
- |
class CORE_EXPORT DocumentMarkerController final |
: public GarbageCollected<DocumentMarkerController>, |
public SynchronousMutationObserver { |