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

Unified Diff: Source/WebCore/platform/graphics/filters/CustomFilterValidatedProgram.h

Issue 13687007: Remove PLATFORM(BLACKBERRY) support. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
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/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

Powered by Google App Engine
This is Rietveld 408576698