| Index: third_party/WebKit/Source/core/editing/markers/TextMatchMarker.h
|
| diff --git a/third_party/WebKit/Source/core/editing/markers/TextMatchMarker.h b/third_party/WebKit/Source/core/editing/markers/TextMatchMarker.h
|
| index 9036dd25c02d0e1aeb150e0bacd624599a317dcc..73b99ce3c268e8c74a3b5308b1479195c18b0ac6 100644
|
| --- a/third_party/WebKit/Source/core/editing/markers/TextMatchMarker.h
|
| +++ b/third_party/WebKit/Source/core/editing/markers/TextMatchMarker.h
|
| @@ -54,16 +54,17 @@ class CORE_EXPORT TextMatchMarker final : public DocumentMarker {
|
|
|
| bool IsRendered() const;
|
| bool Contains(const LayoutPoint&) const;
|
| - void SetRenderedRect(const LayoutRect&);
|
| - const LayoutRect& RenderedRect() const;
|
| - void NullifyRenderedRect();
|
| + void SetLayoutRect(const LayoutRect&);
|
| + const LayoutRect& GetLayoutRect() const;
|
| + void NullifyLayoutRect();
|
| +
|
| void Invalidate();
|
| bool IsValid() const;
|
|
|
| private:
|
| MatchStatus match_status_;
|
| LayoutStatus layout_status_ = LayoutStatus::kInvalid;
|
| - LayoutRect rendered_rect_;
|
| + LayoutRect layout_rect_;
|
|
|
| DISALLOW_COPY_AND_ASSIGN(TextMatchMarker);
|
| };
|
|
|