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

Side by Side Diff: third_party/WebKit/Source/core/editing/markers/CompositionMarkerListImpl.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 unified diff | Download patch
OLDNEW
1 // Copyright 2017 The Chromium Authors. All rights reserved. 1 // Copyright 2017 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef CompositionMarkerListImpl_h 5 #ifndef CompositionMarkerListImpl_h
6 #define CompositionMarkerListImpl_h 6 #define CompositionMarkerListImpl_h
7 7
8 #include "core/editing/markers/DocumentMarkerList.h" 8 #include "core/editing/markers/DocumentMarkerList.h"
9 9
10 namespace blink { 10 namespace blink {
(...skipping 10 matching lines...) Expand all
21 21
22 // DocumentMarkerList implementations 22 // DocumentMarkerList implementations
23 DocumentMarker::MarkerType MarkerType() const final; 23 DocumentMarker::MarkerType MarkerType() const final;
24 24
25 bool IsEmpty() const final; 25 bool IsEmpty() const final;
26 26
27 void Add(DocumentMarker*) final; 27 void Add(DocumentMarker*) final;
28 void Clear() final; 28 void Clear() final;
29 29
30 const HeapVector<Member<DocumentMarker>>& GetMarkers() const final; 30 const HeapVector<Member<DocumentMarker>>& GetMarkers() const final;
31 HeapVector<Member<DocumentMarker>> MarkersIntersectingRange(
32 unsigned start_offset,
33 unsigned end_offset) const final;
31 34
32 bool MoveMarkers(int length, DocumentMarkerList* dst_list) final; 35 bool MoveMarkers(int length, DocumentMarkerList* dst_list) final;
33 bool RemoveMarkers(unsigned start_offset, int length) final; 36 bool RemoveMarkers(unsigned start_offset, int length) final;
34 bool ShiftMarkers(unsigned offset, 37 bool ShiftMarkers(unsigned offset,
35 unsigned old_length, 38 unsigned old_length,
36 unsigned new_length) final; 39 unsigned new_length) final;
37 40
38 DECLARE_VIRTUAL_TRACE(); 41 DECLARE_VIRTUAL_TRACE();
39 42
40 private: 43 private:
41 HeapVector<Member<DocumentMarker>> markers_; 44 HeapVector<Member<DocumentMarker>> markers_;
42 45
43 DISALLOW_COPY_AND_ASSIGN(CompositionMarkerListImpl); 46 DISALLOW_COPY_AND_ASSIGN(CompositionMarkerListImpl);
44 }; 47 };
45 48
46 } // namespace blink 49 } // namespace blink
47 50
48 #endif // CompositionMarkerListImpl_h 51 #endif // CompositionMarkerListImpl_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698