Title: [166176] trunk/Source/WebCore
Revision
166176
Author
commit-qu...@webkit.org
Date
2014-03-24 10:13:03 -0700 (Mon, 24 Mar 2014)

Log Message

ENABLE(CSS_GRID_LAYOUT) guard for CSSGridLineNamesValue
https://bugs.webkit.org/show_bug.cgi?id=130669

Patch by Martin Hodovan <mhodo...@inf.u-szeged.hu> on 2014-03-24
Reviewed by Sergio Villar Senin.

No new tests. No new functionality.

* css/CSSGridLineNamesValue.cpp:
* css/CSSGridLineNamesValue.h:

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (166175 => 166176)


--- trunk/Source/WebCore/ChangeLog	2014-03-24 17:08:00 UTC (rev 166175)
+++ trunk/Source/WebCore/ChangeLog	2014-03-24 17:13:03 UTC (rev 166176)
@@ -1,3 +1,15 @@
+2014-03-24  Martin Hodovan  <mhodo...@inf.u-szeged.hu>
+
+        ENABLE(CSS_GRID_LAYOUT) guard for CSSGridLineNamesValue
+        https://bugs.webkit.org/show_bug.cgi?id=130669
+
+        Reviewed by Sergio Villar Senin.
+
+        No new tests. No new functionality.
+
+        * css/CSSGridLineNamesValue.cpp:
+        * css/CSSGridLineNamesValue.h:
+
 2014-03-24  Chris Fleizach  <cfleiz...@apple.com>
 
         <hr> should expose AXRole/AXSubrole, etc

Modified: trunk/Source/WebCore/css/CSSGridLineNamesValue.cpp (166175 => 166176)


--- trunk/Source/WebCore/css/CSSGridLineNamesValue.cpp	2014-03-24 17:08:00 UTC (rev 166175)
+++ trunk/Source/WebCore/css/CSSGridLineNamesValue.cpp	2014-03-24 17:13:03 UTC (rev 166176)
@@ -31,6 +31,7 @@
 #include "config.h"
 #include "CSSGridLineNamesValue.h"
 
+#if ENABLE(CSS_GRID_LAYOUT)
 namespace WebCore {
 
 String CSSGridLineNamesValue::customCSSText() const
@@ -50,3 +51,4 @@
 
 }
 
+#endif

Modified: trunk/Source/WebCore/css/CSSGridLineNamesValue.h (166175 => 166176)


--- trunk/Source/WebCore/css/CSSGridLineNamesValue.h	2014-03-24 17:08:00 UTC (rev 166175)
+++ trunk/Source/WebCore/css/CSSGridLineNamesValue.h	2014-03-24 17:13:03 UTC (rev 166176)
@@ -31,6 +31,7 @@
 #ifndef CSSGridLineNamesValue_h
 #define CSSGridLineNamesValue_h
 
+#if ENABLE(CSS_GRID_LAYOUT)
 #include "CSSValueList.h"
 #include <wtf/PassRefPtr.h>
 
@@ -56,3 +57,4 @@
 }
 
 #endif
+#endif
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to