| 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..fd34aa7c2309603acd1aaf2be2c2ad19af9838b8 100644 | 
| --- a/third_party/WebKit/Source/platform/image-decoders/ImageDecoder.h | 
| +++ b/third_party/WebKit/Source/platform/image-decoders/ImageDecoder.h | 
| @@ -30,6 +30,7 @@ | 
| #include "SkColorPriv.h" | 
| #include "platform/PlatformExport.h" | 
| #include "platform/SharedBuffer.h" | 
| +#include "platform/graphics/ColorSpaceProfile.h" | 
| #include "platform/graphics/ImageOrientation.h" | 
| #include "platform/image-decoders/ImageAnimation.h" | 
| #include "platform/image-decoders/ImageFrame.h" | 
| @@ -194,6 +195,10 @@ public: | 
| bool ignoresGammaAndColorProfile() const { return m_ignoreGammaAndColorProfile; } | 
|  | 
| virtual bool hasColorProfile() const { return false; } | 
| +    virtual PassRefPtr<ColorSpaceProfile> colorProfile() const { return nullptr; } | 
| + | 
| +    virtual void setDeviceProfile(ColorSpaceProfile*) { } | 
| +    virtual PassRefPtr<ColorSpaceProfile> deviceProfile() const { return nullptr; } | 
|  | 
| #if USE(QCMSLIB) | 
| enum { iccColorProfileHeaderLength = 128 }; | 
|  |