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

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

Issue 2805553003: DocumentMarkerList refactor as an interface (Closed)
Patch Set: Respond to comments, fill in unimplemented methods 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
new file mode 100644
index 0000000000000000000000000000000000000000..32e475115cda426c8f31dc657a89e8e2e44a5310
--- /dev/null
+++ b/third_party/WebKit/Source/core/editing/markers/DocumentMarkerListEditor.h
@@ -0,0 +1,72 @@
+// Copyright 2017 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#ifndef DocumentMarkerListEditor_h
+#define DocumentMarkerListEditor_h
+
+#include "core/editing/markers/DocumentMarkerList.h"
+
+namespace blink {
+
+class DocumentMarkerListEditor {
+ public:
+ static DocumentMarkerList::iterator
+ getPosOfFirstMarkerNotEndingBeforeInSortedList(
rlanday 2017/04/07 21:46:29 This method is only used once in this file and pro
Xiaocheng 2017/04/07 23:42:24 If it's used only once and internally, making it a
rlanday 2017/04/11 01:08:59 I stand corrected, it's also used in TextMatchMark
Xiaocheng 2017/04/11 01:26:01 In this case, I don't have a strong preference. I
+ DocumentMarkerVector* markerList,
+ size_t startOffset);
+
+ static void appendMarkersToInputList(const DocumentMarkerVector& markerList,
rlanday 2017/04/07 21:46:29 This method isn't really an editing method...does
Xiaocheng 2017/04/07 23:42:24 I think this method doesn't do much. We should mak
+ DocumentMarkerVector* inputList);
+
+ static DocumentMarkerList::DidCopyMarkerOrNot copyUnsortedMarkers(
Xiaocheng 2017/04/07 23:42:24 It's better to use output to an empty DMV so that
+ DocumentMarkerVector* markerList,
+ unsigned startOffset,
+ int length,
+ DocumentMarkerList* dstList,
+ int delta);
+ static DocumentMarkerList::DidCopyMarkerOrNot copySortedMarkers(
+ DocumentMarkerVector* markerList,
+ unsigned startOffset,
+ int length,
+ DocumentMarkerList* dstList,
+ int delta);
+
+ static DocumentMarkerList::DidRemoveMarkerOrNot removeUnsortedMarkers(
+ DocumentMarkerVector* markerList,
+ unsigned startOffset,
+ int length,
+ bool shouldRemovePartiallyOverlappingMarkers);
+ static DocumentMarkerList::DidRemoveMarkerOrNot removeSortedMarkers(
+ DocumentMarkerVector* markerList,
+ unsigned startOffset,
+ int length,
+ bool shouldRemovePartiallyOverlappingMarkers);
+
+ static DocumentMarkerList::DidShiftMarkerOrNot shiftUnsortedMarkers(
+ DocumentMarkerVector* markerList,
+ unsigned offset,
+ unsigned oldLength,
+ unsigned newLength);
+ static DocumentMarkerList::DidShiftMarkerOrNot shiftSortedMarkers(
+ DocumentMarkerVector* markerList,
+ unsigned offset,
+ unsigned oldLength,
+ unsigned newLength);
+
+ private:
+ DocumentMarkerListEditor();
+
+ static DocumentMarkerList::DidCopyMarkerOrNot copyMarkersHelper(
Xiaocheng 2017/04/07 23:42:24 It doesn't make too much sense to introduce a stat
+ DocumentMarkerVector* markerList,
+ DocumentMarkerList::iterator beginIt,
+ DocumentMarkerList::iterator endIt,
+ unsigned startOffset,
+ int length,
+ DocumentMarkerList* dstList,
+ int delta);
+};
+
+} // namespace blink
+
+#endif // DocumentMarkerListEditor_h

Powered by Google App Engine
This is Rietveld 408576698