Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(4)

Unified Diff: third_party/WebKit/Source/core/editing/markers/TextMatchMarkerListImpl.h

Issue 2883503004: [DMC #7] Only create RenderedDocumentMarkers for TextMatchMarkerListImpl (Closed)
Patch Set: Rebase on InvalidateRectsForAllMarkers() refactor Created 3 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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);
};

Powered by Google App Engine
This is Rietveld 408576698