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

Unified Diff: third_party/WebKit/Source/core/editing/markers/DocumentMarkerList.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/DocumentMarkerList.h
diff --git a/third_party/WebKit/Source/core/editing/markers/DocumentMarkerList.h b/third_party/WebKit/Source/core/editing/markers/DocumentMarkerList.h
index bd3308cdf3054140632fb1c76d2d22ab29738359..457507e2390bcc042ab0cb26a80fb635dc7782bf 100644
--- a/third_party/WebKit/Source/core/editing/markers/DocumentMarkerList.h
+++ b/third_party/WebKit/Source/core/editing/markers/DocumentMarkerList.h
@@ -11,7 +11,7 @@
namespace blink {
-class RenderedDocumentMarker;
+class DocumentMarker;
// This is an interface implemented by classes that DocumentMarkerController
// uses to store DocumentMarkers. Different implementations can be written
@@ -31,8 +31,7 @@ class CORE_EXPORT DocumentMarkerList
virtual void Add(DocumentMarker*) = 0;
virtual void Clear() = 0;
- virtual const HeapVector<Member<RenderedDocumentMarker>>& GetMarkers()
- const = 0;
+ virtual const HeapVector<Member<DocumentMarker>>& GetMarkers() const = 0;
// Returns true if at least one marker is copied, false otherwise
virtual bool MoveMarkers(int length, DocumentMarkerList* dst_list) = 0;

Powered by Google App Engine
This is Rietveld 408576698