Title: [107900] trunk/Source/WebCore
Revision
107900
Author
[email protected]
Date
2012-02-15 23:50:48 -0800 (Wed, 15 Feb 2012)

Log Message

Windows build fix for !ENABLE(CSS_FILTERS) after r106593.

* platform/graphics/ca/win/PlatformCALayerWin.cpp:

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (107899 => 107900)


--- trunk/Source/WebCore/ChangeLog	2012-02-16 07:39:17 UTC (rev 107899)
+++ trunk/Source/WebCore/ChangeLog	2012-02-16 07:50:48 UTC (rev 107900)
@@ -1,3 +1,9 @@
+2012-02-15  Patrick Gansterer  <[email protected]>
+
+        Windows build fix for !ENABLE(CSS_FILTERS) after r106593.
+
+        * platform/graphics/ca/win/PlatformCALayerWin.cpp:
+
 2012-02-15  Antti Koivisto  <[email protected]>
 
         Move the context invalidation code out from StylePropertySet

Modified: trunk/Source/WebCore/platform/graphics/ca/win/PlatformCALayerWin.cpp (107899 => 107900)


--- trunk/Source/WebCore/platform/graphics/ca/win/PlatformCALayerWin.cpp	2012-02-16 07:39:17 UTC (rev 107899)
+++ trunk/Source/WebCore/platform/graphics/ca/win/PlatformCALayerWin.cpp	2012-02-16 07:50:48 UTC (rev 107900)
@@ -566,6 +566,8 @@
     setNeedsCommit();
 }
 
+#if ENABLE(CSS_FILTERS)
+
 void PlatformCALayer::setFilters(const FilterOperations&)
 {
 }
@@ -575,6 +577,8 @@
     return false;
 }
 
+#endif // ENABLE(CSS_FILTERS)
+
 String PlatformCALayer::name() const
 {
     return CACFLayerGetName(m_layer.get());
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to