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

Unified Diff: third_party/WebKit/Source/core/editing/markers/DocumentMarkerController.cpp

Issue 2898953005: [DMC #16] Rename RenderedDocumentMarker to TextMatchMarker (Closed)
Patch Set: Rebase 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/DocumentMarkerController.cpp
diff --git a/third_party/WebKit/Source/core/editing/markers/DocumentMarkerController.cpp b/third_party/WebKit/Source/core/editing/markers/DocumentMarkerController.cpp
index e7df94b0ee9ae6cc2547e6e6547b023c83b77582..68b952a8a981242ea5f6b104b1bb30cbd84d0b57 100644
--- a/third_party/WebKit/Source/core/editing/markers/DocumentMarkerController.cpp
+++ b/third_party/WebKit/Source/core/editing/markers/DocumentMarkerController.cpp
@@ -37,8 +37,8 @@
#include "core/editing/markers/CompositionMarkerListImpl.h"
#include "core/editing/markers/DocumentMarkerListEditor.h"
#include "core/editing/markers/GrammarMarkerListImpl.h"
-#include "core/editing/markers/RenderedDocumentMarker.h"
#include "core/editing/markers/SpellingMarkerListImpl.h"
+#include "core/editing/markers/TextMatchMarker.h"
#include "core/editing/markers/TextMatchMarkerListImpl.h"
#include "core/frame/LocalFrameView.h"
#include "core/layout/LayoutObject.h"
@@ -446,7 +446,7 @@ void DocumentMarkerController::InvalidateRectsForTextMatchMarkersInNode(
const HeapVector<Member<DocumentMarker>>& markers_in_list =
marker_list->GetMarkers();
for (auto& marker : markers_in_list)
- ToRenderedDocumentMarker(marker)->Invalidate();
+ ToTextMatchMarker(marker)->Invalidate();
InvalidatePaintForTickmarks(node);
}

Powered by Google App Engine
This is Rietveld 408576698