Chromium Code Reviews| OLD | NEW |
|---|---|
| 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 TextMatchMarkerListImpl_h | 5 #ifndef TextMatchMarkerListImpl_h |
| 6 #define TextMatchMarkerListImpl_h | 6 #define TextMatchMarkerListImpl_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 { |
| 11 | 11 |
| 12 class IntRect; | |
| 13 class RenderedDocumentMarker; | |
| 14 | |
| 12 // Implementation of DocumentMarkerList for TextMatch markers. | 15 // Implementation of DocumentMarkerList for TextMatch markers. |
| 13 // Markers are kept sorted by start offset, under the assumption that | 16 // Markers are kept sorted by start offset, under the assumption that |
| 14 // TextMatch markers are typically inserted in an order. | 17 // TextMatch markers are typically inserted in an order. |
| 15 class CORE_EXPORT TextMatchMarkerListImpl final : public DocumentMarkerList { | 18 class CORE_EXPORT TextMatchMarkerListImpl final : public DocumentMarkerList { |
| 16 public: | 19 public: |
| 17 TextMatchMarkerListImpl() = default; | 20 TextMatchMarkerListImpl() = default; |
| 18 | 21 |
| 19 // DocumentMarkerList implementations | 22 // DocumentMarkerList implementations |
| 20 DocumentMarker::MarkerType MarkerType() const final; | 23 DocumentMarker::MarkerType MarkerType() const final; |
| 21 | 24 |
| 22 bool IsEmpty() const final; | 25 bool IsEmpty() const final; |
| 23 | 26 |
| 24 void Add(DocumentMarker*) final; | 27 void Add(DocumentMarker*) final; |
| 25 void Clear() final; | 28 void Clear() final; |
| 26 | 29 |
| 27 const HeapVector<Member<DocumentMarker>>& GetMarkers() const final; | 30 const HeapVector<Member<DocumentMarker>>& GetMarkers() const final; |
| 28 | 31 |
| 29 bool MoveMarkers(int length, DocumentMarkerList* dst_list) final; | 32 bool MoveMarkers(int length, DocumentMarkerList* dst_list) final; |
| 30 bool RemoveMarkers(unsigned start_offset, int length) final; | 33 bool RemoveMarkers(unsigned start_offset, int length) final; |
| 31 bool ShiftMarkers(unsigned offset, | 34 bool ShiftMarkers(unsigned offset, |
| 32 unsigned old_length, | 35 unsigned old_length, |
| 33 unsigned new_length) final; | 36 unsigned new_length) final; |
| 34 DECLARE_VIRTUAL_TRACE(); | 37 DECLARE_VIRTUAL_TRACE(); |
| 35 | 38 |
| 39 // TextMatchMarkerListImpl-specific | |
| 40 void AppendRenderedRectsToVector(const Node&, Vector<IntRect>*); | |
|
yosin_UTC9
2017/05/22 05:24:18
Let's make this function to return |Vector<IntRect
| |
| 41 void UpdateMarkerRenderedRectIfNeeded(const Node&, RenderedDocumentMarker&); | |
|
yosin_UTC9
2017/05/22 05:24:18
nit: |UpdateMarkerRenderedRectIfNeeded()| should b
| |
| 42 | |
| 36 private: | 43 private: |
| 37 HeapVector<Member<DocumentMarker>> markers_; | 44 HeapVector<Member<DocumentMarker>> markers_; |
| 38 | 45 |
| 39 DISALLOW_COPY_AND_ASSIGN(TextMatchMarkerListImpl); | 46 DISALLOW_COPY_AND_ASSIGN(TextMatchMarkerListImpl); |
| 40 }; | 47 }; |
| 41 | 48 |
| 42 DEFINE_TYPE_CASTS(TextMatchMarkerListImpl, | 49 DEFINE_TYPE_CASTS(TextMatchMarkerListImpl, |
| 43 DocumentMarkerList, | 50 DocumentMarkerList, |
| 44 list, | 51 list, |
| 45 list->MarkerType() == DocumentMarker::kTextMatch, | 52 list->MarkerType() == DocumentMarker::kTextMatch, |
| 46 list.MarkerType() == DocumentMarker::kTextMatch); | 53 list.MarkerType() == DocumentMarker::kTextMatch); |
| 47 | 54 |
| 48 } // namespace blink | 55 } // namespace blink |
| 49 | 56 |
| 50 #endif // TextMatchMarkerListImpl_h | 57 #endif // TextMatchMarkerListImpl_h |
| OLD | NEW |