| Index: third_party/WebKit/Source/platform/graphics/BitmapImage.h
|
| diff --git a/third_party/WebKit/Source/platform/graphics/BitmapImage.h b/third_party/WebKit/Source/platform/graphics/BitmapImage.h
|
| index 61e0594a8072ee8dd424acb9ad668b8ebfd7add7..a28b3ba652258f68759692ee1046ef75cfacafba 100644
|
| --- a/third_party/WebKit/Source/platform/graphics/BitmapImage.h
|
| +++ b/third_party/WebKit/Source/platform/graphics/BitmapImage.h
|
| @@ -41,6 +41,8 @@
|
|
|
| namespace blink {
|
|
|
| +class ColorSpaceProfile;
|
| +
|
| template <typename T> class Timer;
|
|
|
| class PLATFORM_EXPORT BitmapImage final : public Image {
|
| @@ -71,6 +73,9 @@ public:
|
|
|
| bool isAllDataReceived() const { return m_allDataReceived; }
|
| bool hasColorProfile() const;
|
| + PassRefPtr<ColorSpaceProfile> colorProfile() const { return m_source.colorProfile(); }
|
| + void notifyDeviceProfile(ColorSpaceProfile*);
|
| + bool resetDecoder(ColorSpaceProfile*);
|
|
|
| // It may look unusual that there's no start animation call as public API.
|
| // This because we start and stop animating lazily. Animation starts when
|
|
|