Title: [139903] trunk/Source/WebCore
- Revision
- 139903
- Author
- [email protected]
- Date
- 2013-01-16 11:26:57 -0800 (Wed, 16 Jan 2013)
Log Message
Add a missing #if to fix the Mac build sans ENABLE_CSS_FILTERS.
Rubber-stamped by Simon Fraser.
* platform/graphics/ca/GraphicsLayerCA.cpp:
(WebCore::GraphicsLayerCA::cloneLayer):
Modified Paths
Diff
Modified: trunk/Source/WebCore/ChangeLog (139902 => 139903)
--- trunk/Source/WebCore/ChangeLog 2013-01-16 19:25:40 UTC (rev 139902)
+++ trunk/Source/WebCore/ChangeLog 2013-01-16 19:26:57 UTC (rev 139903)
@@ -1,3 +1,12 @@
+2013-01-16 Tim Horton <[email protected]>
+
+ Add a missing #if to fix the Mac build sans ENABLE_CSS_FILTERS.
+
+ Rubber-stamped by Simon Fraser.
+
+ * platform/graphics/ca/GraphicsLayerCA.cpp:
+ (WebCore::GraphicsLayerCA::cloneLayer):
+
2013-01-16 Kentaro Hara <[email protected]>
[V8] Make a creationContext parameter of toV8() mandatory
Modified: trunk/Source/WebCore/platform/graphics/ca/GraphicsLayerCA.cpp (139902 => 139903)
--- trunk/Source/WebCore/platform/graphics/ca/GraphicsLayerCA.cpp 2013-01-16 19:25:40 UTC (rev 139902)
+++ trunk/Source/WebCore/platform/graphics/ca/GraphicsLayerCA.cpp 2013-01-16 19:26:57 UTC (rev 139903)
@@ -2863,7 +2863,9 @@
newLayer->setOpaque(layer->isOpaque());
newLayer->setBackgroundColor(layer->backgroundColor());
newLayer->setContentsScale(layer->contentsScale());
+#if ENABLE(CSS_FILTERS)
newLayer->copyFiltersFrom(layer);
+#endif
if (cloneLevel == IntermediateCloneLevel) {
newLayer->setOpacity(layer->opacity());
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo/webkit-changes