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

Unified Diff: third_party/WebKit/Source/core/layout/svg/LayoutSVGInlineText.cpp

Issue 2465983002: Rename "paint invalidation rect" etc. to "visual rect". (Closed)
Patch Set: - Created 4 years, 1 month 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/layout/svg/LayoutSVGInlineText.cpp
diff --git a/third_party/WebKit/Source/core/layout/svg/LayoutSVGInlineText.cpp b/third_party/WebKit/Source/core/layout/svg/LayoutSVGInlineText.cpp
index 1366c87c9cc334ef93eb94dbcfe1594dd52ae986..de8cef99b3a6b524afd32bd29dd5b6cdbeb224b3 100644
--- a/third_party/WebKit/Source/core/layout/svg/LayoutSVGInlineText.cpp
+++ b/third_party/WebKit/Source/core/layout/svg/LayoutSVGInlineText.cpp
@@ -401,13 +401,12 @@ void LayoutSVGInlineText::computeNewScaledFontForStyle(
scaledFont.update(document.styleEngine().fontSelector());
}
-LayoutRect LayoutSVGInlineText::absoluteClippedOverflowRect() const {
- return parent()->absoluteClippedOverflowRect();
+LayoutRect LayoutSVGInlineText::absoluteVisualRect() const {
+ return parent()->absoluteVisualRect();
}
-FloatRect LayoutSVGInlineText::paintInvalidationRectInLocalSVGCoordinates()
- const {
- return parent()->paintInvalidationRectInLocalSVGCoordinates();
+FloatRect LayoutSVGInlineText::visualRectInLocalSVGCoordinates() const {
+ return parent()->visualRectInLocalSVGCoordinates();
}
PassRefPtr<StringImpl> LayoutSVGInlineText::originalText() const {

Powered by Google App Engine
This is Rietveld 408576698