| 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
|
|
|