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

Unified Diff: Source/WebCore/bindings/v8/custom/V8CSSValueCustom.cpp

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/bindings/v8/custom/V8CSSValueCustom.cpp
diff --git a/Source/WebCore/bindings/v8/custom/V8CSSValueCustom.cpp b/Source/WebCore/bindings/v8/custom/V8CSSValueCustom.cpp
index 551e87718cf615d28c042632c6aef7bdc72c16f3..bc96b0fc1e6c430e177239b9348957703a384101 100644
--- a/Source/WebCore/bindings/v8/custom/V8CSSValueCustom.cpp
+++ b/Source/WebCore/bindings/v8/custom/V8CSSValueCustom.cpp
@@ -39,10 +39,8 @@
#include "V8WebKitCSSFilterValue.h"
#endif
-#if ENABLE(CSS_SHADERS)
#include "V8WebKitCSSMixFunctionValue.h"
#include "WebKitCSSMixFunctionValue.h"
-#endif
#if ENABLE(SVG)
#include "V8SVGColor.h"
@@ -60,10 +58,8 @@ v8::Handle<v8::Object> wrap(CSSValue* impl, v8::Handle<v8::Object> creationConte
if (impl->isWebKitCSSFilterValue())
return wrap(static_cast<WebKitCSSFilterValue*>(impl), creationContext, isolate);
#endif
-#if ENABLE(CSS_SHADERS)
if (impl->isWebKitCSSMixFunctionValue())
return wrap(static_cast<WebKitCSSMixFunctionValue*>(impl), creationContext, isolate);
-#endif
if (impl->isValueList())
return wrap(static_cast<CSSValueList*>(impl), creationContext, isolate);
if (impl->isPrimitiveValue())

Powered by Google App Engine
This is Rietveld 408576698