Title: [161086] trunk/Source/WebCore
Revision
161086
Author
[email protected]
Date
2013-12-26 01:24:36 -0800 (Thu, 26 Dec 2013)

Log Message

Unreviewed build fix after r159526.
isBoxValue is used at out of ENABLE_CSS_SHAPES gaurd. It causes a compile failure.
So I moved isBoxValue to out side of ENABLE_CSS_SHAPES.

* css/CSSParser.cpp:

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (161085 => 161086)


--- trunk/Source/WebCore/ChangeLog	2013-12-26 07:32:04 UTC (rev 161085)
+++ trunk/Source/WebCore/ChangeLog	2013-12-26 09:24:36 UTC (rev 161086)
@@ -1,3 +1,11 @@
+2013-12-26  ChangSeok Oh  <[email protected]>
+
+        Unreviewed build fix after r159526.
+        isBoxValue is used at out of ENABLE_CSS_SHAPES gaurd. It causes a compile failure.
+        So I moved isBoxValue to out side of ENABLE_CSS_SHAPES.
+
+        * css/CSSParser.cpp:
+
 2013-12-25  Gyuyoung Kim  <[email protected]>
 
         Set m_pos as private in InlineIterator, and use getter and setter functions.

Modified: trunk/Source/WebCore/css/CSSParser.cpp (161085 => 161086)


--- trunk/Source/WebCore/css/CSSParser.cpp	2013-12-26 07:32:04 UTC (rev 161085)
+++ trunk/Source/WebCore/css/CSSParser.cpp	2013-12-26 09:24:36 UTC (rev 161086)
@@ -5818,7 +5818,6 @@
     return shape;
 }
 
-#if ENABLE(CSS_SHAPES)
 static bool isBoxValue(CSSValueID valueId)
 {
     switch (valueId) {
@@ -5833,6 +5832,7 @@
     return false;
 }
 
+#if ENABLE(CSS_SHAPES)
 PassRefPtr<CSSValue> CSSParser::parseShapeProperty(CSSPropertyID propId)
 {
     if (!RuntimeEnabledFeatures::sharedFeatures().cssShapesEnabled())
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to