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

Unified Diff: third_party/WebKit/Source/platform/image-decoders/ImageDecoder.h

Issue 1331533002: [poc] curve-filter Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Draw layered images with a recording GraphicContext Created 5 years, 1 month 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: third_party/WebKit/Source/platform/image-decoders/ImageDecoder.h
diff --git a/third_party/WebKit/Source/platform/image-decoders/ImageDecoder.h b/third_party/WebKit/Source/platform/image-decoders/ImageDecoder.h
index eea37216069119c5290f1214cdcbc4869be27544..fe504cda47b16d5ca51c27635b816fbcb2ab20de 100644
--- a/third_party/WebKit/Source/platform/image-decoders/ImageDecoder.h
+++ b/third_party/WebKit/Source/platform/image-decoders/ImageDecoder.h
@@ -30,7 +30,9 @@
#include "SkColorPriv.h"
#include "platform/PlatformExport.h"
#include "platform/SharedBuffer.h"
+#include "platform/graphics/ColorSpaceProfile.h"
#include "platform/graphics/ImageOrientation.h"
+#include "platform/graphics/ImageSource.h"
#include "platform/image-decoders/ImageAnimation.h"
#include "platform/image-decoders/ImageFrame.h"
#include "public/platform/Platform.h"
@@ -194,6 +196,7 @@ public:
bool ignoresGammaAndColorProfile() const { return m_ignoreGammaAndColorProfile; }
virtual bool hasColorProfile() const { return false; }
+ virtual PassRefPtr<ColorSpaceProfile> colorProfile() const { return nullptr; }
#if USE(QCMSLIB)
enum { iccColorProfileHeaderLength = 128 };

Powered by Google App Engine
This is Rietveld 408576698