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

Unified Diff: Source/platform/graphics/ColorSpaceFilter.h

Issue 352873002: [wip] image color correction (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 6 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/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

Powered by Google App Engine
This is Rietveld 408576698