| 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 bc629f0b503cee39d423b9ca06d55c3d5126ab00..3aec9ddb68346a9c19ba65a87539a33e1e57b746 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);
|
| };
|
|
|