Title: [109152] trunk/Source/WebCore
Revision
109152
Author
[email protected]
Date
2012-02-28 14:28:12 -0800 (Tue, 28 Feb 2012)

Log Message

https://bugs.webkit.org/show_bug.cgi?id=79824

Unreviewed build fix for when ENABLE(CSS_FILTERS) is on
but ENABLE(CSS_SHADERS) is off.

* css/WebKitCSSFilterValue.cpp:
(WebCore::WebKitCSSFilterValue::typeUsesSpaceSeparator):

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (109151 => 109152)


--- trunk/Source/WebCore/ChangeLog	2012-02-28 22:26:24 UTC (rev 109151)
+++ trunk/Source/WebCore/ChangeLog	2012-02-28 22:28:12 UTC (rev 109152)
@@ -1,3 +1,13 @@
+2012-02-28  Dean Jackson  <[email protected]>
+
+        https://bugs.webkit.org/show_bug.cgi?id=79824
+
+        Unreviewed build fix for when ENABLE(CSS_FILTERS) is on
+        but ENABLE(CSS_SHADERS) is off.
+
+        * css/WebKitCSSFilterValue.cpp:
+        (WebCore::WebKitCSSFilterValue::typeUsesSpaceSeparator):
+
 2012-02-28  Dave Moore  <[email protected]>
 
         Slow content causes choppy scrolling

Modified: trunk/Source/WebCore/css/WebKitCSSFilterValue.cpp (109151 => 109152)


--- trunk/Source/WebCore/css/WebKitCSSFilterValue.cpp	2012-02-28 22:26:24 UTC (rev 109151)
+++ trunk/Source/WebCore/css/WebKitCSSFilterValue.cpp	2012-02-28 22:28:12 UTC (rev 109152)
@@ -45,6 +45,7 @@
 #if ENABLE(CSS_SHADERS)
     return operationType != CustomFilterOperation;
 #else
+    UNUSED_PARAM(operationType);
     return true;
 #endif
 }
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to