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

Unified Diff: third_party/WebKit/Source/core/editing/markers/CompositionMarkerListImpl.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
« no previous file with comments | « no previous file | third_party/WebKit/Source/core/editing/markers/CompositionMarkerListImpl.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/core/editing/markers/CompositionMarkerListImpl.h
diff --git a/third_party/WebKit/Source/core/editing/markers/CompositionMarkerListImpl.h b/third_party/WebKit/Source/core/editing/markers/CompositionMarkerListImpl.h
index 8f32ea6dacaf74e1b86bab118e2ae2c79ef125e9..9f5c9d7d38b4ef4124359f7afeb281c4205e573a 100644
--- a/third_party/WebKit/Source/core/editing/markers/CompositionMarkerListImpl.h
+++ b/third_party/WebKit/Source/core/editing/markers/CompositionMarkerListImpl.h
@@ -27,7 +27,7 @@ class CORE_EXPORT CompositionMarkerListImpl final : 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;
@@ -38,7 +38,7 @@ class CORE_EXPORT CompositionMarkerListImpl final : public DocumentMarkerList {
DECLARE_VIRTUAL_TRACE();
private:
- HeapVector<Member<RenderedDocumentMarker>> markers_;
+ HeapVector<Member<DocumentMarker>> markers_;
DISALLOW_COPY_AND_ASSIGN(CompositionMarkerListImpl);
};
« no previous file with comments | « no previous file | third_party/WebKit/Source/core/editing/markers/CompositionMarkerListImpl.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698