Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(254)

Unified Diff: Source/WebCore/css/CSSValue.h

Issue 13839016: Remove CSS_SHADERS compile-time flag. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 7 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: Source/WebCore/css/CSSValue.h
diff --git a/Source/WebCore/css/CSSValue.h b/Source/WebCore/css/CSSValue.h
index 6165d538e928edd412be22350f46a89ba7ce2722..9e301d9816ea4bbf1ed91afdbab17bc2704fa4a6 100644
--- a/Source/WebCore/css/CSSValue.h
+++ b/Source/WebCore/css/CSSValue.h
@@ -91,11 +91,9 @@ public:
bool isCalculationValue() const {return m_classType == CalculationClass; }
#if ENABLE(CSS_FILTERS)
bool isWebKitCSSFilterValue() const { return m_classType == WebKitCSSFilterClass; }
-#if ENABLE(CSS_SHADERS)
bool isWebKitCSSArrayFunctionValue() const { return m_classType == WebKitCSSArrayFunctionValueClass; }
bool isWebKitCSSMixFunctionValue() const { return m_classType == WebKitCSSMixFunctionValueClass; }
bool isWebKitCSSShaderValue() const { return m_classType == WebKitCSSShaderClass; }
-#endif
#endif // ENABLE(CSS_FILTERS)
bool isVariableValue() const { return m_classType == VariableClass; }
#if ENABLE(SVG)
@@ -161,9 +159,7 @@ protected:
UnicodeRangeClass,
LineBoxContainClass,
CalculationClass,
-#if ENABLE(CSS_FILTERS) && ENABLE(CSS_SHADERS)
eseidel 2013/04/09 18:30:08 Are CSS_FILTERS always compiled in as well?
Max Vujovic (mvujovic) 2013/04/09 18:53:14 CSS_FILTERS are always compiled in as well. I'll b
WebKitCSSShaderClass,
-#endif
VariableClass,
#if ENABLE(SVG)
SVGColorClass,
@@ -178,11 +174,9 @@ protected:
#endif
#if ENABLE(CSS_FILTERS)
WebKitCSSFilterClass,
-#if ENABLE(CSS_SHADERS)
WebKitCSSArrayFunctionValueClass,
WebKitCSSMixFunctionValueClass,
#endif
-#endif
WebKitCSSTransformClass,
// Do not append non-list class types here.
};

Powered by Google App Engine
This is Rietveld 408576698