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

Unified Diff: Source/WebCore/rendering/RenderView.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/rendering/RenderView.h
diff --git a/Source/WebCore/rendering/RenderView.h b/Source/WebCore/rendering/RenderView.h
index 33d8e3c4ca249b06004e92c0a54b31dbd826e126..b0aa54508eabdd56cfdbaa7587895f761fc8639b 100644
--- a/Source/WebCore/rendering/RenderView.h
+++ b/Source/WebCore/rendering/RenderView.h
@@ -35,7 +35,7 @@ class RenderLayerCompositor;
class RenderQuote;
class RenderWidget;
-#if ENABLE(CSS_SHADERS) && USE(3D_GRAPHICS)
+#if USE(3D_GRAPHICS)
class CustomFilterGlobalContext;
#endif
@@ -182,7 +182,7 @@ public:
RenderLayerCompositor* compositor();
bool usesCompositing() const;
-#if ENABLE(CSS_SHADERS) && USE(3D_GRAPHICS)
+#if USE(3D_GRAPHICS)
CustomFilterGlobalContext* customFilterGlobalContext();
#endif
@@ -316,7 +316,7 @@ private:
LayoutState* m_layoutState;
unsigned m_layoutStateDisableCount;
OwnPtr<RenderLayerCompositor> m_compositor;
-#if ENABLE(CSS_SHADERS) && USE(3D_GRAPHICS)
+#if USE(3D_GRAPHICS)
OwnPtr<CustomFilterGlobalContext> m_customFilterGlobalContext;
#endif
OwnPtr<FlowThreadController> m_flowThreadController;

Powered by Google App Engine
This is Rietveld 408576698