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

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

Issue 2952953002: [MarkersIntersectingRange #1] Add DocumentMarkerList::MarkersIntersectingRange() (Closed)
Patch Set: Created 3 years, 6 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 f0ba08f2f806a96d2763fa996070526567f884c5..ec2bb76b466b6992e2867828a7293bbc8610f56e 100644
--- a/third_party/WebKit/Source/core/editing/markers/DocumentMarkerListEditor.h
+++ b/third_party/WebKit/Source/core/editing/markers/DocumentMarkerListEditor.h
@@ -45,6 +45,11 @@ class CORE_EXPORT DocumentMarkerListEditor final {
unsigned offset,
unsigned old_length,
unsigned new_length);
+
+ static HeapVector<Member<DocumentMarker>> MarkersIntersectingRange(
rlanday 2017/06/22 01:59:37 This isn't actually an editing method, but I wasn'
yosin_UTC9 2017/06/22 02:28:20 I think "Editor" is better than "Utils", actually
Xiaocheng 2017/06/22 03:06:06 I'm a little skeptical about this function returni
+ const MarkerList&,
+ unsigned start_offset,
+ unsigned end_offset);
};
} // namespace blink

Powered by Google App Engine
This is Rietveld 408576698