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

Unified Diff: third_party/WebKit/Source/core/editing/markers/SpellCheckMarkerListImpl.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/SpellCheckMarkerListImpl.h
diff --git a/third_party/WebKit/Source/core/editing/markers/SpellCheckMarkerListImpl.h b/third_party/WebKit/Source/core/editing/markers/SpellCheckMarkerListImpl.h
index bc629f0b503cee39d423b9ca06d55c3d5126ab00..3aec9ddb68346a9c19ba65a87539a33e1e57b746 100644
--- a/third_party/WebKit/Source/core/editing/markers/SpellCheckMarkerListImpl.h
+++ b/third_party/WebKit/Source/core/editing/markers/SpellCheckMarkerListImpl.h
@@ -22,7 +22,7 @@ class CORE_EXPORT SpellCheckMarkerListImpl : 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;
@@ -41,7 +41,7 @@ class CORE_EXPORT SpellCheckMarkerListImpl : public DocumentMarkerList {
SpellCheckMarkerListImpl() = default;
private:
- HeapVector<Member<RenderedDocumentMarker>> markers_;
+ HeapVector<Member<DocumentMarker>> markers_;
DISALLOW_COPY_AND_ASSIGN(SpellCheckMarkerListImpl);
};

Powered by Google App Engine
This is Rietveld 408576698