| Index: third_party/WebKit/Source/core/editing/markers/TextMatchMarkerListImpl.h
|
| diff --git a/third_party/WebKit/Source/core/editing/markers/TextMatchMarkerListImpl.h b/third_party/WebKit/Source/core/editing/markers/TextMatchMarkerListImpl.h
|
| index ca4ae45f27b214b1bd72e2f1adf01ea3ae27bd8a..54023b183c839ca9d919be653e351b2bd7a93741 100644
|
| --- a/third_party/WebKit/Source/core/editing/markers/TextMatchMarkerListImpl.h
|
| +++ b/third_party/WebKit/Source/core/editing/markers/TextMatchMarkerListImpl.h
|
| @@ -9,6 +9,8 @@
|
|
|
| namespace blink {
|
|
|
| +class IntRect;
|
| +
|
| // Implementation of DocumentMarkerList for TextMatch markers.
|
| // Markers are kept sorted by start offset, under the assumption that
|
| // TextMatch markers are typically inserted in an order.
|
| @@ -33,6 +35,9 @@ class CORE_EXPORT TextMatchMarkerListImpl final : public DocumentMarkerList {
|
| unsigned new_length) final;
|
| DECLARE_VIRTUAL_TRACE();
|
|
|
| + // TextMatchMarkerListImpl-specific
|
| + Vector<IntRect> RenderedRects(const Node&) const;
|
| +
|
| private:
|
| HeapVector<Member<DocumentMarker>> markers_;
|
|
|
|
|