Index: Source/core/layout/svg/LayoutSVGResourceMasker.cpp |
diff --git a/Source/core/layout/svg/LayoutSVGResourceMasker.cpp b/Source/core/layout/svg/LayoutSVGResourceMasker.cpp |
index d77d36fe0d43e3ddbff7e429966ba45940b3e8a6..90a30b24d69c20e1022a8a323c06742ecf7a2545 100644 |
--- a/Source/core/layout/svg/LayoutSVGResourceMasker.cpp |
+++ b/Source/core/layout/svg/LayoutSVGResourceMasker.cpp |
@@ -84,7 +84,7 @@ PassRefPtr<const SkPicture> LayoutSVGResourceMasker::createContentPicture(Affine |
LayoutObject* layoutObject = childElement->layoutObject(); |
if (!layoutObject) |
continue; |
- const LayoutStyle* style = layoutObject->style(); |
+ const ComputedStyle* style = layoutObject->style(); |
if (!style || style->display() == NONE || style->visibility() != VISIBLE) |
continue; |
@@ -103,7 +103,7 @@ void LayoutSVGResourceMasker::calculateMaskContentPaintInvalidationRect() |
LayoutObject* layoutObject = childElement->layoutObject(); |
if (!layoutObject) |
continue; |
- const LayoutStyle* style = layoutObject->style(); |
+ const ComputedStyle* style = layoutObject->style(); |
if (!style || style->display() == NONE || style->visibility() != VISIBLE) |
continue; |
m_maskContentBoundaries.unite(layoutObject->localToParentTransform().mapRect(layoutObject->paintInvalidationRectInLocalCoordinates())); |