| Index: third_party/WebKit/Source/core/editing/markers/TextMatchMarkerListImpl.h
|
| diff --git a/third_party/WebKit/Source/core/editing/markers/TextMatchMarkerListImpl.h b/third_party/WebKit/Source/core/editing/markers/TextMatchMarkerListImpl.h
|
| index b0875049e277b63ab6660b5eb77050f3869afdcc..eb7e7e9ccfecf707479fd8f83cc0b9802d2fbd08 100644
|
| --- a/third_party/WebKit/Source/core/editing/markers/TextMatchMarkerListImpl.h
|
| +++ b/third_party/WebKit/Source/core/editing/markers/TextMatchMarkerListImpl.h
|
| @@ -24,7 +24,7 @@ class CORE_EXPORT TextMatchMarkerListImpl final : 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;
|
| @@ -34,7 +34,7 @@ class CORE_EXPORT TextMatchMarkerListImpl final : public DocumentMarkerList {
|
| DECLARE_VIRTUAL_TRACE();
|
|
|
| private:
|
| - HeapVector<Member<RenderedDocumentMarker>> markers_;
|
| + HeapVector<Member<DocumentMarker>> markers_;
|
|
|
| DISALLOW_COPY_AND_ASSIGN(TextMatchMarkerListImpl);
|
| };
|
|
|