Chromium Code Reviews| Index: third_party/WebKit/Source/core/editing/markers/TextMatchMarker.cpp |
| diff --git a/third_party/WebKit/Source/core/editing/markers/TextMatchMarker.cpp b/third_party/WebKit/Source/core/editing/markers/TextMatchMarker.cpp |
| index 096b8a5ed3d80710313e7059714143a2abf0a163..7ba2fc7b33ccad746c1bb14bb2b5d86dedd85080 100644 |
| --- a/third_party/WebKit/Source/core/editing/markers/TextMatchMarker.cpp |
| +++ b/third_party/WebKit/Source/core/editing/markers/TextMatchMarker.cpp |
| @@ -6,8 +6,56 @@ |
| namespace blink { |
| +TextMatchMarker::TextMatchMarker(unsigned start_offset, |
| + unsigned end_offset, |
| + MatchStatus status) |
| + : DocumentMarker(start_offset, end_offset), match_status_(status) {} |
| + |
| DocumentMarker::MarkerType TextMatchMarker::GetType() const { |
| return DocumentMarker::kTextMatch; |
| } |
| +bool TextMatchMarker::IsActiveMatch() const { |
| + return match_status_ == MatchStatus::kActive; |
| +} |
| + |
| +void TextMatchMarker::SetIsActiveMatch(bool active) { |
| + match_status_ = active ? MatchStatus::kActive : MatchStatus::kInactive; |
| +} |
| + |
| +bool TextMatchMarker::IsRendered() const { |
| + return layout_state_ == State::kValidNotNull; |
| +} |
| + |
| +bool TextMatchMarker::Contains(const LayoutPoint& point) const { |
| + DCHECK_EQ(layout_state_, State::kValidNotNull); |
| + return rendered_rect_.Contains(point); |
| +} |
| + |
| +void TextMatchMarker::SetRenderedRect(const LayoutRect& rect) { |
| + if (layout_state_ == State::kValidNotNull && rect == rendered_rect_) |
| + return; |
| + layout_state_ = State::kValidNotNull; |
| + rendered_rect_ = rect; |
| +} |
| + |
| +const LayoutRect& TextMatchMarker::RenderedRect() const { |
| + DCHECK_EQ(layout_state_, State::kValidNotNull); |
| + return rendered_rect_; |
| +} |
| + |
| +void TextMatchMarker::NullifyRenderedRect() { |
| + layout_state_ = State::kValidNull; |
| + // Now |m_renderedRect| can not be accessed until |setRenderedRect| is |
|
yosin_UTC9
2017/06/02 01:14:14
nit: s/m_renderedRect/rendered_rect_/
nit: s/setRe
|
| + // called. |
| +} |
| + |
| +void TextMatchMarker::Invalidate() { |
| + layout_state_ = State::kInvalid; |
| +} |
| + |
| +bool TextMatchMarker::IsValid() const { |
| + return layout_state_ != State::kInvalid; |
| +} |
| + |
| } // namespace blink |