Index: third_party/WebKit/Source/core/editing/markers/SpellCheckMarkerListImpl.h |
diff --git a/third_party/WebKit/Source/core/editing/markers/SpellCheckMarkerListImpl.h b/third_party/WebKit/Source/core/editing/markers/SpellCheckMarkerListImpl.h |
index 0149f159b3908584567c6f5f5b9908d79b03396e..a637a4d924e712e9a9e3854703e926fbccb7fd1f 100644 |
--- a/third_party/WebKit/Source/core/editing/markers/SpellCheckMarkerListImpl.h |
+++ b/third_party/WebKit/Source/core/editing/markers/SpellCheckMarkerListImpl.h |
@@ -22,7 +22,7 @@ class CORE_EXPORT SpellCheckMarkerListImpl : public DocumentMarkerList { |
void Add(DocumentMarker*) final; |
void Clear() final; |
- const HeapVector<Member<RenderedDocumentMarker>>& GetMarkers() const final; |
+ const HeapVector<Member<DocumentMarker>>& GetMarkers() const final; |
bool MoveMarkers(int length, DocumentMarkerList* dst_list) final; |
bool RemoveMarkers(unsigned start_offset, int length) final; |
@@ -41,7 +41,7 @@ class CORE_EXPORT SpellCheckMarkerListImpl : public DocumentMarkerList { |
SpellCheckMarkerListImpl() = default; |
private: |
- HeapVector<Member<RenderedDocumentMarker>> markers_; |
+ HeapVector<Member<DocumentMarker>> markers_; |
DISALLOW_COPY_AND_ASSIGN(SpellCheckMarkerListImpl); |
}; |