| Index: Source/WebCore/platform/graphics/filters/CustomFilterValidatedProgram.h
|
| diff --git a/Source/WebCore/platform/graphics/filters/CustomFilterValidatedProgram.h b/Source/WebCore/platform/graphics/filters/CustomFilterValidatedProgram.h
|
| index c68f4a784386e82a227f26633ce644ac8f6a9c17..37cb10cb671accd9aa2b4eaf74f9a4939b738a7b 100644
|
| --- a/Source/WebCore/platform/graphics/filters/CustomFilterValidatedProgram.h
|
| +++ b/Source/WebCore/platform/graphics/filters/CustomFilterValidatedProgram.h
|
| @@ -40,13 +40,6 @@
|
| #include <wtf/text/WTFString.h>
|
|
|
| // PlatformCompiledProgram defines a type that is compatible with the framework used to implement accelerated compositing on a particular platform.
|
| -#if PLATFORM(BLACKBERRY)
|
| -namespace WebCore {
|
| -class LayerCompiledProgram;
|
| -}
|
| -typedef WebCore::LayerCompiledProgram PlatformCompiledProgram;
|
| -#endif
|
| -
|
| namespace WebCore {
|
|
|
| struct ANGLEShaderSymbol;
|
| @@ -98,7 +91,7 @@ public:
|
| return m_validatedFragmentShader;
|
| }
|
|
|
| -#if PLATFORM(BLACKBERRY) || USE(TEXTURE_MAPPER)
|
| +#if USE(TEXTURE_MAPPER)
|
| PlatformCompiledProgram* platformCompiledProgram();
|
| #endif
|
|
|
| @@ -131,7 +124,7 @@ private:
|
| String m_validatedFragmentShader;
|
|
|
| RefPtr<CustomFilterCompiledProgram> m_compiledProgram;
|
| -#if PLATFORM(BLACKBERRY) || USE(TEXTURE_MAPPER)
|
| +#if USE(TEXTURE_MAPPER)
|
| PlatformCompiledProgram* m_platformCompiledProgram;
|
| #endif
|
|
|
|
|