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

Unified Diff: Source/core/layout/svg/LayoutSVGResourceMasker.cpp

Issue 1033943002: Rename LayoutStyle to papayawhip (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: ensureComputedStyle Created 5 years, 9 months 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: 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()));
« no previous file with comments | « Source/core/layout/svg/LayoutSVGResourceGradient.cpp ('k') | Source/core/layout/svg/LayoutSVGResourcePaintServer.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698