| Index: third_party/WebKit/Source/platform/graphics/DeferredImageDecoder.h | 
| diff --git a/third_party/WebKit/Source/platform/graphics/DeferredImageDecoder.h b/third_party/WebKit/Source/platform/graphics/DeferredImageDecoder.h | 
| index b101f44371278b0ae68a9b63e1bf4c0f3ea36089..51e54c395c1dca0b8338fa05412a820817ab40de 100644 | 
| --- a/third_party/WebKit/Source/platform/graphics/DeferredImageDecoder.h | 
| +++ b/third_party/WebKit/Source/platform/graphics/DeferredImageDecoder.h | 
| @@ -41,6 +41,7 @@ class SkImage; | 
|  | 
| namespace blink { | 
|  | 
| +class ColorSpaceProfile; | 
| class ImageFrameGenerator; | 
| class SharedBuffer; | 
|  | 
| @@ -63,6 +64,8 @@ public: | 
|  | 
| bool isSizeAvailable(); | 
| bool hasColorProfile() const; | 
| +    PassRefPtr<ColorSpaceProfile> colorProfile() const; | 
| +    void setDeviceProfile(ColorSpaceProfile*); | 
| IntSize size() const; | 
| IntSize frameSizeAtIndex(size_t index) const; | 
| size_t frameCount(); | 
| @@ -92,7 +95,10 @@ private: | 
| String m_filenameExtension; | 
| IntSize m_size; | 
| int m_repetitionCount; | 
| + | 
| bool m_hasColorProfile; | 
| +    RefPtr<ColorSpaceProfile> m_colorProfile; | 
| +    RefPtr<ColorSpaceProfile> m_deviceProfile; | 
|  | 
| // Carries only frame state and other information. Does not carry bitmap. | 
| Vector<FrameData> m_frameData; | 
|  |