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

Unified Diff: third_party/WebKit/Source/core/editing/markers/DocumentMarkerController.cpp

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/DocumentMarkerController.cpp
diff --git a/third_party/WebKit/Source/core/editing/markers/DocumentMarkerController.cpp b/third_party/WebKit/Source/core/editing/markers/DocumentMarkerController.cpp
index df947538c04ec1cf414c13ccbec2b4e42a0e0f77..46271dca040723a24ff6d52b2b4ff0cbc42bb4f3 100644
--- a/third_party/WebKit/Source/core/editing/markers/DocumentMarkerController.cpp
+++ b/third_party/WebKit/Source/core/editing/markers/DocumentMarkerController.cpp
@@ -404,7 +404,7 @@ DocumentMarkerVector DocumentMarkerController::Markers() {
return result;
}
-Vector<IntRect> DocumentMarkerController::RenderedRectsForTextMatchMarkers() {
+Vector<IntRect> DocumentMarkerController::LayoutRectsForTextMatchMarkers() {
DCHECK(!document_->View()->NeedsLayout());
DCHECK(!document_->NeedsLayoutTreeUpdate());
@@ -427,7 +427,7 @@ Vector<IntRect> DocumentMarkerController::RenderedRectsForTextMatchMarkers() {
ListForType(markers, DocumentMarker::kTextMatch);
if (!list)
continue;
- result.AppendVector(ToTextMatchMarkerListImpl(list)->RenderedRects(node));
+ result.AppendVector(ToTextMatchMarkerListImpl(list)->LayoutRects(node));
}
return result;

Powered by Google App Engine
This is Rietveld 408576698