| Index: Source/WebCore/rendering/RenderView.cpp
|
| diff --git a/Source/WebCore/rendering/RenderView.cpp b/Source/WebCore/rendering/RenderView.cpp
|
| index 95c9717d1b124c324aab9ce1bdc46fb7d233ac2b..1f248a025cd30c919aea09065251115c2a936de4 100644
|
| --- a/Source/WebCore/rendering/RenderView.cpp
|
| +++ b/Source/WebCore/rendering/RenderView.cpp
|
| @@ -45,7 +45,7 @@
|
| #include "TransformState.h"
|
| #include "WebCoreMemoryInstrumentation.h"
|
|
|
| -#if ENABLE(CSS_SHADERS) && USE(3D_GRAPHICS)
|
| +#if USE(3D_GRAPHICS)
|
| #include "CustomFilterGlobalContext.h"
|
| #endif
|
|
|
| @@ -1074,7 +1074,7 @@ void RenderView::setIsInWindow(bool isInWindow)
|
| m_compositor->setIsInWindow(isInWindow);
|
| }
|
|
|
| -#if ENABLE(CSS_SHADERS) && USE(3D_GRAPHICS)
|
| +#if USE(3D_GRAPHICS)
|
| CustomFilterGlobalContext* RenderView::customFilterGlobalContext()
|
| {
|
| if (!m_customFilterGlobalContext)
|
| @@ -1125,7 +1125,7 @@ void RenderView::reportMemoryUsage(MemoryObjectInfo* memoryObjectInfo) const
|
| info.addMember(m_widgets, "widgets");
|
| info.addMember(m_layoutState, "layoutState");
|
| info.addMember(m_compositor, "compositor");
|
| -#if ENABLE(CSS_SHADERS) && USE(3D_GRAPHICS)
|
| +#if USE(3D_GRAPHICS)
|
| info.addMember(m_customFilterGlobalContext, "customFilterGlobalContext");
|
| #endif
|
| info.addMember(m_flowThreadController, "flowThreadController");
|
|
|