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

Unified Diff: third_party/WebKit/Source/core/editing/markers/DocumentMarkerListEditor.h

Issue 2829543002: [DMC #5] Add SpellCheckMarkerListImpl (Closed)
Patch Set: Leave method implementations in DocumentMarkerListEditor but change signatures Created 3 years, 8 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 5edeca3c7580ea1c1ae96ef49203c52cdebeb1b4..df299a90ee3a63f48e469bd3ea975f0e195b6685 100644
--- a/third_party/WebKit/Source/core/editing/markers/DocumentMarkerListEditor.h
+++ b/third_party/WebKit/Source/core/editing/markers/DocumentMarkerListEditor.h
@@ -17,7 +17,6 @@ class DocumentMarkerListEditor {
public:
using MarkerList = HeapVector<Member<RenderedDocumentMarker>>;
- static void AddMarkerAndMergeOverlapping(MarkerList*, const DocumentMarker*);
static void AddMarkerWithoutMergingOverlapping(MarkerList*,
const DocumentMarker*);
@@ -29,11 +28,6 @@ class DocumentMarkerListEditor {
// Returns true if a marker was removed, false otherwise.
static bool RemoveMarkers(MarkerList*, unsigned start_offset, int length);
- // Returns true if a marker was removed, false otherwise.
- static bool RemoveMarkersUnderWords(MarkerList*,
- const String& node_text,
- const Vector<String>& words);
-
// Returns true if a marker was shifted or removed, false otherwise.
static bool ShiftMarkers(MarkerList*,
unsigned offset,

Powered by Google App Engine
This is Rietveld 408576698