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/DocumentMarkerListEditor.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/DocumentMarkerListEditor.h
diff --git a/third_party/WebKit/Source/core/editing/markers/DocumentMarkerListEditor.h b/third_party/WebKit/Source/core/editing/markers/DocumentMarkerListEditor.h
index df299a90ee3a63f48e469bd3ea975f0e195b6685..55d10c1a0fdfccd398408fd7c587406c4c496770 100644
--- a/third_party/WebKit/Source/core/editing/markers/DocumentMarkerListEditor.h
+++ b/third_party/WebKit/Source/core/editing/markers/DocumentMarkerListEditor.h
@@ -11,14 +11,12 @@
namespace blink {
class DocumentMarker;
-class RenderedDocumentMarker;
class DocumentMarkerListEditor {
public:
- using MarkerList = HeapVector<Member<RenderedDocumentMarker>>;
+ using MarkerList = HeapVector<Member<DocumentMarker>>;
- static void AddMarkerWithoutMergingOverlapping(MarkerList*,
- const DocumentMarker*);
+ static void AddMarkerWithoutMergingOverlapping(MarkerList*, DocumentMarker*);
// Returns true if a marker was moved, false otherwise.
static bool MoveMarkers(MarkerList* src_list,

Powered by Google App Engine
This is Rietveld 408576698