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

Unified Diff: third_party/WebKit/Source/core/paint/SVGImagePainter.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/paint/SVGImagePainter.cpp
diff --git a/third_party/WebKit/Source/core/paint/SVGImagePainter.cpp b/third_party/WebKit/Source/core/paint/SVGImagePainter.cpp
index 39dc7a0175937fbc4dbff0020371585502d98236..bf7992fd3706eddfed2a76d56c973ef2e286736d 100644
--- a/third_party/WebKit/Source/core/paint/SVGImagePainter.cpp
+++ b/third_party/WebKit/Source/core/paint/SVGImagePainter.cpp
@@ -24,8 +24,7 @@ void SVGImagePainter::paint(const PaintInfo& paintInfo) {
!m_layoutSVGImage.imageResource()->hasImage())
return;
- FloatRect boundingBox =
- m_layoutSVGImage.paintInvalidationRectInLocalSVGCoordinates();
+ FloatRect boundingBox = m_layoutSVGImage.visualRectInLocalSVGCoordinates();
if (!paintInfo.cullRect().intersectsCullRect(
m_layoutSVGImage.localToSVGParentTransform(), boundingBox))
return;
« no previous file with comments | « third_party/WebKit/Source/core/paint/SVGContainerPainter.cpp ('k') | third_party/WebKit/Source/core/paint/SVGMaskPainter.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698