| Index: third_party/WebKit/Source/core/editing/markers/DocumentMarkerListEditor.h
|
| diff --git a/third_party/WebKit/Source/core/editing/markers/DocumentMarkerListEditor.h b/third_party/WebKit/Source/core/editing/markers/DocumentMarkerListEditor.h
|
| index df299a90ee3a63f48e469bd3ea975f0e195b6685..55d10c1a0fdfccd398408fd7c587406c4c496770 100644
|
| --- a/third_party/WebKit/Source/core/editing/markers/DocumentMarkerListEditor.h
|
| +++ b/third_party/WebKit/Source/core/editing/markers/DocumentMarkerListEditor.h
|
| @@ -11,14 +11,12 @@
|
| namespace blink {
|
|
|
| class DocumentMarker;
|
| -class RenderedDocumentMarker;
|
|
|
| class DocumentMarkerListEditor {
|
| public:
|
| - using MarkerList = HeapVector<Member<RenderedDocumentMarker>>;
|
| + using MarkerList = HeapVector<Member<DocumentMarker>>;
|
|
|
| - static void AddMarkerWithoutMergingOverlapping(MarkerList*,
|
| - const DocumentMarker*);
|
| + static void AddMarkerWithoutMergingOverlapping(MarkerList*, DocumentMarker*);
|
|
|
| // Returns true if a marker was moved, false otherwise.
|
| static bool MoveMarkers(MarkerList* src_list,
|
|
|