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

Unified Diff: third_party/WebKit/Source/core/layout/svg/LayoutSVGModelObject.h

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/LayoutSVGModelObject.h
diff --git a/third_party/WebKit/Source/core/layout/svg/LayoutSVGModelObject.h b/third_party/WebKit/Source/core/layout/svg/LayoutSVGModelObject.h
index 03d48ccbb809a01af89475f815272871940f8485..823b44b2422632214c9e3c612b7a640650e9ad98 100644
--- a/third_party/WebKit/Source/core/layout/svg/LayoutSVGModelObject.h
+++ b/third_party/WebKit/Source/core/layout/svg/LayoutSVGModelObject.h
@@ -47,9 +47,9 @@ class LayoutSVGModelObject : public LayoutObject {
bool isChildAllowed(LayoutObject*, const ComputedStyle&) const override;
- LayoutRect absoluteClippedOverflowRect() const override;
- FloatRect paintInvalidationRectInLocalSVGCoordinates() const override {
- return m_paintInvalidationBoundingBox;
+ LayoutRect absoluteVisualRect() const override;
+ FloatRect visualRectInLocalSVGCoordinates() const override {
+ return m_localVisualRect;
}
void absoluteRects(Vector<IntRect>&,
@@ -95,7 +95,7 @@ class LayoutSVGModelObject : public LayoutObject {
IntRect absoluteElementBoundingBoxRect() const final;
protected:
- FloatRect m_paintInvalidationBoundingBox;
+ FloatRect m_localVisualRect;
};
} // namespace blink

Powered by Google App Engine
This is Rietveld 408576698