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

Unified Diff: third_party/WebKit/Source/core/editing/markers/TextMatchMarker.h

Issue 2920913003: Rename TextMatchMarker::rendered_rect_ to layout_rect_ (Closed)
Patch Set: Rename DMC::RenderedRectsForTextMatchMarkers() 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 side-by-side diff with in-line comments
Download patch
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);
};

Powered by Google App Engine
This is Rietveld 408576698