From: commit-queue@webkit.org Date: Mon, 24 Mar 2014 17:13:03 +0000 (+0000) Subject: ENABLE(CSS_GRID_LAYOUT) guard for CSSGridLineNamesValue X-Git-Url: http://git.webkit.org/?p=WebKit-https.git;a=commitdiff_plain;h=d2f72815f34f400eec5ad8bfe78881fc9c34a231 ENABLE(CSS_GRID_LAYOUT) guard for CSSGridLineNamesValue https://bugs.webkit.org/show_bug.cgi?id=130669 Patch by Martin Hodovan on 2014-03-24 Reviewed by Sergio Villar Senin. No new tests. No new functionality. * css/CSSGridLineNamesValue.cpp: * css/CSSGridLineNamesValue.h: git-svn-id: https://svn.webkit.org/repository/webkit/trunk@166176 268f45cc-cd09-0410-ab3c-d52691b4dbfc --- diff --git a/Source/WebCore/ChangeLog b/Source/WebCore/ChangeLog index 56b2b15..84e57b7 100644 --- a/Source/WebCore/ChangeLog +++ b/Source/WebCore/ChangeLog @@ -1,3 +1,15 @@ +2014-03-24 Martin Hodovan + + 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
should expose AXRole/AXSubrole, etc diff --git a/Source/WebCore/css/CSSGridLineNamesValue.cpp b/Source/WebCore/css/CSSGridLineNamesValue.cpp index 40684f1..53d6010 100644 --- a/Source/WebCore/css/CSSGridLineNamesValue.cpp +++ b/Source/WebCore/css/CSSGridLineNamesValue.cpp @@ -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 @@ PassRefPtr CSSGridLineNamesValue::cloneForCSSOM() const } +#endif diff --git a/Source/WebCore/css/CSSGridLineNamesValue.h b/Source/WebCore/css/CSSGridLineNamesValue.h index 6a5b7b5..1b0d1b8 100644 --- a/Source/WebCore/css/CSSGridLineNamesValue.h +++ b/Source/WebCore/css/CSSGridLineNamesValue.h @@ -31,6 +31,7 @@ #ifndef CSSGridLineNamesValue_h #define CSSGridLineNamesValue_h +#if ENABLE(CSS_GRID_LAYOUT) #include "CSSValueList.h" #include @@ -56,3 +57,4 @@ CSS_VALUE_TYPE_CASTS(CSSGridLineNamesValue, isGridLineNamesValue()); } #endif +#endif