Index: Source/core/rendering/style/RenderStyle.cpp |
diff --git a/Source/core/rendering/style/RenderStyle.cpp b/Source/core/rendering/style/RenderStyle.cpp |
index 86e8b6e4dc58ed2963064f60ebbe98bc93875ac8..6a9d8925acf1facf3fa07e514b99d148f7b6b9ec 100644 |
--- a/Source/core/rendering/style/RenderStyle.cpp |
+++ b/Source/core/rendering/style/RenderStyle.cpp |
@@ -1654,6 +1654,14 @@ Color RenderStyle::initialTapHighlightColor() |
return RenderTheme::tapHighlightColor(); |
} |
+#if ENABLE(OILPAN) |
+const FilterOperations& RenderStyle::initialFilter() |
+{ |
+ DEFINE_STATIC_LOCAL(Persistent<FilterOperationsWrapper>, ops, (FilterOperationsWrapper::create())); |
+ return ops->operations(); |
+} |
+#endif |
+ |
LayoutBoxExtent RenderStyle::imageOutsets(const NinePieceImage& image) const |
{ |
return LayoutBoxExtent(NinePieceImage::computeOutset(image.outset().top(), borderTopWidth()), |