Index: Source/platform/graphics/ColorSpaceFilter.h |
diff --git a/Source/core/svg/SVGAnimatedNumberList.h b/Source/platform/graphics/ColorSpaceFilter.h |
similarity index 85% |
copy from Source/core/svg/SVGAnimatedNumberList.h |
copy to Source/platform/graphics/ColorSpaceFilter.h |
index 8314c4e4e8b8f14fa43d65dcf41fa54a85960ba7..a403f4560844b6abdc8af4a921c19ac0fcf7919d 100644 |
--- a/Source/core/svg/SVGAnimatedNumberList.h |
+++ b/Source/platform/graphics/ColorSpaceFilter.h |
@@ -28,16 +28,19 @@ |
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
*/ |
-#ifndef SVGAnimatedNumberList_h |
-#define SVGAnimatedNumberList_h |
+#ifndef ColorSpaceFilter_h |
+#define ColorSpaceFilter_h |
-#include "core/svg/SVGNumberListTearOff.h" |
-#include "core/svg/properties/SVGAnimatedProperty.h" |
+#include "wtf/PassRefPtr.h" |
+ |
+class SkColorFilter; |
namespace WebCore { |
-typedef SVGAnimatedProperty<SVGNumberList> SVGAnimatedNumberList; |
+class ColorSpaceProfile; |
+ |
+PassRefPtr<SkColorFilter> createColorSpaceFilter(ColorSpaceProfile* source, ColorSpaceProfile* target); |
-} // namespace WebCore |
+} |
-#endif |
+#endif // ColorSpaceFilter_h |