Index: Source/core/rendering/svg/RenderSVGImage.cpp |
diff --git a/Source/core/rendering/svg/RenderSVGImage.cpp b/Source/core/rendering/svg/RenderSVGImage.cpp |
index 842319d72e3da3cdb116fbfda47fb4e1c7062ba4..91d82103edfe93a200e96f7f6c931d083bef9c87 100644 |
--- a/Source/core/rendering/svg/RenderSVGImage.cpp |
+++ b/Source/core/rendering/svg/RenderSVGImage.cpp |
@@ -227,10 +227,10 @@ void RenderSVGImage::imageChanged(WrappedImagePtr, const IntRect*) |
setShouldDoFullPaintInvalidation(true); |
} |
-void RenderSVGImage::addFocusRingRects(Vector<IntRect>& rects, const LayoutPoint&, const RenderLayerModelObject*) const |
+void RenderSVGImage::addFocusRingRects(Vector<LayoutRect>& rects, const LayoutPoint&, const RenderLayerModelObject*) const |
{ |
// this is called from paint() after the localTransform has already been applied |
- IntRect contentRect = enclosingIntRect(paintInvalidationRectInLocalCoordinates()); |
+ LayoutRect contentRect = LayoutRect(paintInvalidationRectInLocalCoordinates()); |
if (!contentRect.isEmpty()) |
rects.append(contentRect); |
} |