| 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);
|
| }
|
|
|